/*
  Kaiser's Emporium
  Refactored production stylesheet
  - Existing cascade and HTML compatibility preserved
  - Exact duplicate rules removed
  - Temporary development comments removed
  - Patriotic hero streamers reduced for a more realistic electrical effect
*/

:root {
  --bg: #050505;
  --panel: #101010;
  --panel2: #171717;
  --line: rgba(255, 255, 255, 0.1);
  --pink: #ff00cc;
  --purple: #8a2be2;
  --blue: #00f0ff;
  --gold: #ffcc33;
  --green: #58ff7a;
  --text: #f5f5f5;
  --muted: #bdbdbd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
}

/* Buttons */

.post-btn {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 8px;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.45);
  transition: 0.25s ease;
}

.post-btn:hover {
  background: var(--blue);
  color: black;
}

/* Header / Hero */

.navbar,
.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-navbar {
  justify-content: center;
  position: relative;
  padding-bottom: 4px;
}

.home-navbar .post-btn {
  position: absolute;
  right: 0;
}

.list-header {
  height: 58px;
  background: #080808;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
}

.navbar h1,
.brand-link {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 700;
  text-shadow:
    0 0 10px var(--pink),
    0 0 20px var(--pink),
    0 0 40px var(--purple);
}

.brand-link {
  font-size: 24px;
  text-transform: none;
}

.brand-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.brand-emblem img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 0, 204, 0.45))
    drop-shadow(0 0 12px rgba(0, 240, 255, 0.25));
}

.site-logo {
  font-family: "Orbitron", Arial, sans-serif;
  line-height: 0.92;
  font-size: 46px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: none;
}

.site-logo span {
  display: block;
}

.hero {
  min-height: 600px;
  padding: 25px;
  background:
    radial-gradient(circle at center, rgba(138, 43, 226, 0.35), transparent 40%),
    radial-gradient(circle at top, rgba(255, 0, 204, 0.15), transparent 60%),
    #050505;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  gap: 38px;
  align-items: start;
  padding-top: 14px;
}

.hero-left-panel,
.hero-right-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content {
  text-align: center;
  padding-top: 105px;
}

.hero-city {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 15px;
  margin-bottom: 18px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.75),
    0 0 18px rgba(255, 204, 51, 0.35);
}

.hero-tagline {
  color: white;
  font-size: 46px;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow:
    0 0 10px rgba(255, 0, 204, 0.65),
    0 0 22px rgba(138, 43, 226, 0.45),
    0 0 36px rgba(0, 240, 255, 0.18);
}

.hero-description {
  color: var(--blue);
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.25);
}

/* Hero side links, videos, socials */

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-links a {
  color: #030303;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  border: 1px solid rgba(141, 252, 255, 0.96);
  border-radius: 10px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 44%),
    #076e78;
  box-shadow:
    0 0 3px rgba(195, 255, 255, 0.95),
    0 0 14px rgba(61, 245, 255, 0.72),
    0 0 29px rgba(0, 240, 255, 0.34),
    inset 0 0 13px rgba(255, 255, 255, 0.25);
  text-shadow:
    0 0 4px rgba(210, 255, 255, 0.82),
    0 0 9px rgba(0, 240, 255, 0.38);
  transition: 0.25s ease;
}

.quick-links a:hover {
  color: black;
  background: var(--blue);
}

.weed-link {
  color: #030303 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 46%),
    #15913b !important;
  border-color: rgba(76, 255, 115, 0.78) !important;
  box-shadow:
    0 0 12px rgba(76, 255, 115, 0.68),
    0 0 25px rgba(76, 255, 115, 0.3),
    inset 0 0 12px rgba(255, 255, 255, 0.27) !important;
}

/* v140 — mobile Kats become Kaiser's neon jukebox */
@media (max-width: 800px) {
  .mobile-menu-category-list,
  .all-kats-grid {
    position: relative;
    isolation: isolate;
  }

  /*
    These ornaments become flex/grid children, so they add the jukebox crown
    and speaker deck without changing any existing category-button dimensions.
  */
  .mobile-menu-category-list::before,
  .all-kats-grid::before {
    content: "♬  KAISER'S ROCK-O-LA  ♬";
    box-sizing: border-box;
    display: grid;
    place-items: end center;
    width: min(100%, 430px);
    height: 92px;
    margin: 0 auto 3px;
    padding: 0 18px 15px;
    border: 2px solid rgba(255, 194, 55, 0.88);
    border-bottom-width: 5px;
    border-radius: 215px 215px 28px 28px / 88px 88px 25px 25px;
    color: #fff0a8;
    background:
      radial-gradient(ellipse at 50% 108%, rgba(255, 176, 0, 0.28) 0 15%, transparent 42%),
      radial-gradient(ellipse at 50% 100%, transparent 0 44%, rgba(0, 226, 255, 0.72) 45% 48%, rgba(255, 27, 184, 0.68) 49% 52%, transparent 54%),
      linear-gradient(90deg, rgba(0, 223, 255, 0.28), rgba(34, 5, 31, 0.96) 31% 69%, rgba(255, 24, 178, 0.30)),
      #050406;
    font-family: "Metal Mania", "Orbitron", sans-serif;
    font-size: clamp(17px, 5vw, 23px);
    line-height: 1;
    letter-spacing: 1.3px;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.96),
      0 0 8px rgba(255, 176, 0, 0.88),
      0 0 16px rgba(255, 62, 0, 0.44);
    box-shadow:
      inset 0 0 0 4px rgba(8, 8, 10, 0.92),
      inset 0 0 0 6px rgba(255, 222, 123, 0.33),
      inset 0 -15px 22px rgba(255, 0, 174, 0.12),
      0 0 5px rgba(255, 244, 205, 0.72),
      0 0 17px rgba(255, 176, 0, 0.50),
      -9px 0 24px rgba(0, 226, 255, 0.25),
      9px 0 24px rgba(255, 30, 183, 0.25);
  }

  .mobile-menu-category-list::after,
  .all-kats-grid::after {
    content: "▥  ♫  KAISER HI-FIDELITY  ♫  ▥";
    box-sizing: border-box;
    display: grid;
    place-items: center;
    width: min(100%, 430px);
    min-height: 82px;
    margin: 4px auto 0;
    padding: 16px 22px;
    border: 2px solid rgba(255, 194, 55, 0.82);
    border-radius: 22px 22px 58px 58px;
    color: #ffcf4a;
    background:
      repeating-linear-gradient(90deg, transparent 0 8px, rgba(255, 65, 42, 0.28) 9px 12px, transparent 13px 20px),
      radial-gradient(circle at 50% 48%, rgba(255, 179, 25, 0.30), transparent 36%),
      linear-gradient(90deg, rgba(0, 210, 255, 0.18), rgba(8, 5, 7, 0.98) 27% 73%, rgba(255, 21, 172, 0.20)),
      #030303;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(10px, 2.8vw, 13px);
    font-weight: 800;
    letter-spacing: 1.1px;
    text-align: center;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.82),
      0 0 7px rgba(255, 176, 0, 0.76);
    box-shadow:
      inset 0 0 0 4px rgba(0, 0, 0, 0.82),
      inset 0 0 18px rgba(255, 176, 0, 0.18),
      0 0 5px rgba(255, 244, 205, 0.58),
      0 0 15px rgba(255, 176, 0, 0.40),
      -7px 0 20px rgba(0, 226, 255, 0.20),
      7px 0 20px rgba(255, 30, 183, 0.20);
  }

  .mobile-menu-category-list::before,
  .mobile-menu-category-list::after {
    flex: 0 0 auto;
  }

  .all-kats-grid::before,
  .all-kats-grid::after {
    grid-column: 1 / -1;
  }

  .mobile-menu-city span,
  .all-kats-location p {
    width: max-content;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
    color: #ffb000;
    transform: rotate(-3deg);
    transform-origin: center;
    text-shadow:
      0 0 2px rgba(255, 247, 218, 0.82),
      0 0 7px rgba(255, 176, 0, 0.68),
      0 0 14px rgba(255, 132, 0, 0.30);
  }

  .mobile-menu-city strong,
  .all-kats-location span {
    color: #ffb000;
    text-shadow:
      0 0 2px rgba(255, 247, 218, 0.72),
      0 0 7px rgba(255, 176, 0, 0.58),
      0 0 13px rgba(255, 132, 0, 0.26);
  }
}

/* v129 — Kemp rock-and-roll treatment for the dedicated filters page */
body.filters-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 230, 255, 0.08), transparent 29%),
    radial-gradient(circle at 83% 20%, rgba(205, 55, 170, 0.10), transparent 31%),
    linear-gradient(180deg, #030304 0%, #080509 52%, #020203 100%);
}

body.filters-page .filter-page-container {
  width: min(1140px, calc(100% - 32px));
  margin: 48px auto 72px;
}

body.filters-page .filter-page-box {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(0, 235, 255, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 18, 22, 0.94), rgba(19, 5, 20, 0.93)),
    #08080a;
  box-shadow:
    0 0 8px rgba(233, 252, 255, 0.16),
    0 0 26px rgba(0, 229, 255, 0.12),
    0 0 38px rgba(201, 73, 177, 0.10),
    inset 0 0 34px rgba(0, 0, 0, 0.58);
}

body.filters-page .filter-page-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #00eaff, #775cff 48%, #cf6bbd);
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.48);
}

body.filters-page .filter-page-box > * {
  position: relative;
  z-index: 1;
}

body.filters-page .filter-page-box > h1 {
  margin: 30px 0 20px;
  color: #f7f7fb;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow:
    0 0 2px #fff,
    0 0 8px rgba(207, 107, 189, 0.54);
}

body.filters-page .filter-page-box .eyebrow {
  margin: 20px 0 0;
  color: #ffbf24;
  font-family: "Orbitron", Arial, sans-serif;
  letter-spacing: 0.025em;
  text-shadow: 0 0 5px rgba(255, 176, 0, 0.34);
}

body.filters-page .selected-category-box {
  margin-bottom: 26px;
  padding: 15px 20px 17px;
  border: 1px solid rgba(207, 107, 189, 0.46);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(0, 223, 255, 0.08), transparent 38%, rgba(207, 107, 189, 0.12)),
    url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
    #050608;
  box-shadow:
    0 0 12px rgba(0, 226, 255, 0.13),
    0 0 17px rgba(207, 107, 189, 0.12),
    inset 0 0 16px rgba(0, 0, 0, 0.58);
  text-align: center;
}

body.filters-page .selected-category-label {
  margin: 0 0 4px;
  color: #a9bbc0;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.filters-page .selected-category-name {
  margin: 0;
  color: #ffbf24;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.48rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-shadow:
    0 0 2px rgba(255, 249, 222, 0.70),
    0 0 7px rgba(255, 176, 0, 0.38);
}

body.filters-page .filter-page-form {
  display: grid;
  gap: 16px;
}

body.filters-page .filter-page-form > .filter-section {
  padding: 20px;
  border: 1px solid rgba(0, 225, 239, 0.22);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.045), rgba(207, 107, 189, 0.055)),
    rgba(4, 7, 9, 0.72);
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(0, 229, 255, 0.06);
}

body.filters-page .filter-page-form .filter-section h2 {
  margin: 0 0 13px;
  color: #cf6bbd;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  letter-spacing: 0.035em;
  text-shadow:
    0 0 1px rgba(255, 245, 253, 0.50),
    0 0 5px rgba(207, 107, 189, 0.26);
}

body.filters-page .filter-note {
  margin: -4px 0 13px;
  color: #aeb9bd;
  line-height: 1.45;
}

body.filters-page .filter-check-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 226, 239, 0.24);
  border-radius: 13px;
  background: rgba(2, 12, 15, 0.74);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.filters-page .filter-check-card input[type="checkbox"],
body.filters-page .filter-check-card input[type="radio"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #00e7f2;
  cursor: pointer;
}

body.filters-page .filter-check-card > span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

body.filters-page .filter-check-card strong,
body.filters-page .filter-check-card small {
  display: block;
}

body.filters-page .filter-check-card small {
  margin-top: 2px;
  color: #aeb9bd;
  line-height: 1.3;
}

body.filters-page .filter-check-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 235, 255, 0.58);
  box-shadow: 0 0 12px rgba(0, 230, 255, 0.14);
}

body.filters-page .filter-page-form input[type="text"],
body.filters-page .filter-page-form input[type="number"],
body.filters-page .filter-page-form select {
  min-height: 48px;
  border: 1px solid rgba(0, 225, 239, 0.25);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.70);
  color: #f5f7f8;
  box-shadow: inset 0 0 11px rgba(0, 229, 255, 0.04);
}

body.filters-page .filter-page-form input:focus,
body.filters-page .filter-page-form select:focus {
  border-color: #00e7f2;
  outline: none;
  box-shadow:
    0 0 0 2px rgba(0, 231, 242, 0.10),
    0 0 12px rgba(0, 231, 242, 0.17);
}

body.filters-page .filter-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 230px));
  gap: 14px;
  margin-top: 8px;
}

body.filters-page .filter-apply-btn,
body.filters-page .filter-clear-btn {
  min-height: 52px;
  border-radius: 14px;
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-align: center;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

body.filters-page .filter-apply-btn {
  color: #72f7ff;
  border-color: rgba(0, 238, 255, 0.88);
  background:
    linear-gradient(90deg, rgba(0, 238, 255, 0.18), transparent 44%, rgba(0, 128, 255, 0.18)),
    url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
    #02090c;
  box-shadow:
    0 0 4px rgba(231, 254, 255, 0.48),
    0 0 14px rgba(0, 235, 255, 0.30);
}

body.filters-page .filter-clear-btn {
  color: #d996ca;
  border-color: rgba(207, 107, 189, 0.80);
  background:
    linear-gradient(90deg, rgba(207, 107, 189, 0.17), transparent 44%, rgba(126, 61, 144, 0.18)),
    url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
    #0a050a;
  box-shadow:
    0 0 4px rgba(255, 236, 251, 0.34),
    0 0 14px rgba(207, 107, 189, 0.24);
}

body.filters-page .filter-apply-btn:hover,
body.filters-page .filter-clear-btn:hover {
  transform: translateY(-2px) scale(1.012);
  filter: brightness(1.12);
}

@media (max-width: 800px) {
  body.filters-page .filter-page-container {
    width: min(100% - 20px, 620px);
    margin: 20px auto 42px;
  }

  body.filters-page .filter-page-box {
    padding: 22px 14px 26px;
    border-radius: 19px;
  }

  body.filters-page .filter-page-box > h1 {
    margin-top: 25px;
    text-align: center;
  }

  body.filters-page .filter-page-box .eyebrow {
    text-align: center;
  }

  body.filters-page .filter-page-form > .filter-section {
    padding: 15px 12px;
  }

  body.filters-page .filter-two-col,
  body.filters-page .filter-actions {
    grid-template-columns: 1fr;
  }

  body.filters-page .filter-actions {
    gap: 11px;
  }

  body.filters-page .filter-apply-btn,
  body.filters-page .filter-clear-btn {
    width: 100%;
  }
}

/* ==========================================================
   v120 — JOB BUSTERS TAKEOVER
========================================================== */

.job-busters-home-art,
.job-busters-hub-art,
.job-busters-mobile-art,
.job-busters-listing-art,
.job-busters-form-art {
  display: block;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 219, 112, 0.72);
  border-radius: 22px;
  box-shadow:
    0 0 4px rgba(255, 255, 255, 0.58),
    0 0 17px rgba(255, 70, 31, 0.42),
    0 0 31px rgba(0, 175, 255, 0.28);
}

.job-busters-home-art {
  width: min(100%, 410px);
  margin: 3px auto 14px;
}

.job-busters-hub-art {
  width: min(100%, 900px);
  margin: 0 auto 30px;
}

.job-busters-mobile-art {
  width: min(100%, 540px);
  margin: 0 auto 24px;
}

.job-busters-listing-art {
  width: min(100%, 820px);
  max-height: none;
  margin: 4px auto 25px;
  object-fit: contain;
  object-position: center;
}

.job-busters-form-art {
  width: min(100%, 850px);
  margin: 22px auto 31px;
}

@media (max-width: 800px) {
  .job-busters-home-art,
  .job-busters-hub-art,
  .job-busters-mobile-art,
  .job-busters-listing-art,
  .job-busters-form-art {
    border-radius: 16px;
  }

  .job-busters-home-art {
    width: 100%;
    margin-bottom: 12px;
  }

  .job-busters-hub-art,
  .job-busters-mobile-art {
    margin-bottom: 21px;
  }

  .job-busters-listing-art {
    width: 100%;
    max-height: none;
    margin: 7px auto 20px;
  }

  .job-busters-form-art {
    width: 100%;
    margin: 18px auto 25px;
  }
}

.weed-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow:
    0 0 4px rgba(205, 255, 214, 0.84),
    0 0 9px rgba(76, 255, 115, 0.4);
}

.weed-icon {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: #031a09;
  stroke: #031a09;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(183, 255, 195, 0.9));
}

.music-link {
  color: #030303 !important;
  font-size: clamp(20px, 1.5vw, 24px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 44%),
    #bd8c08 !important;
  border-color: rgba(255, 235, 151, 0.98) !important;
  box-shadow:
    0 0 3px rgba(255, 246, 203, 0.96),
    0 0 16px rgba(255, 220, 84, 0.78),
    0 0 31px rgba(255, 204, 51, 0.37),
    inset 0 0 11px rgba(255, 255, 255, 0.27) !important;
  text-shadow:
    0 0 4px rgba(255, 248, 205, 0.88),
    0 0 9px rgba(255, 204, 51, 0.42);
}

.music-link::after {
  content: " ♪";
}

.video-card h3 {
  color: var(--gold);
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow:
    0 0 5px rgba(255, 255, 225, 0.78),
    0 0 11px rgba(255, 204, 51, 0.9),
    0 0 20px rgba(255, 0, 204, 0.42);
}

.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0.65px solid rgba(255, 95, 225, 0.68);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.24),
    0 0 32px rgba(255, 0, 204, 0.61),
    0 0 49px rgba(0, 240, 255, 0.39);
}

@keyframes video-horizontal-glow {
  0%,
  100% {
    background-position:
      left center,
      right center,
      -55% top,
      155% bottom;
  }

  50% {
    background-position:
      left center,
      right center,
      155% top,
      -55% bottom;
  }
}

@keyframes card-edge-neon-drift {
  0%,
  100% {
    background-position:
      0% -120%,
      100% 220%,
      -70% 0%,
      170% 100%;
  }

  50% {
    background-position:
      0% 220%,
      100% -120%,
      170% 0%,
      -70% 100%;
  }
}

.video-box::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1.25px;
  border-radius: 14px;
  background: conic-gradient(
    from 215deg,
    #ff42d0 0deg,
    #fff7ff 42deg,
    #9f54ff 92deg,
    #00f0ff 155deg,
    #f8ffff 205deg,
    #7450ff 252deg,
    #ff42d0 315deg,
    #fff7ff 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.video-box iframe {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 13px;
  clip-path: inset(0 round 13px);
}

.social-box {
  text-align: center;
}

.social-box p {
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.65),
    0 0 14px rgba(255, 0, 204, 0.25);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 12px;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  background: rgba(0, 240, 255, 0.04);
  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.18),
    inset 0 0 10px rgba(255, 0, 204, 0.08);
}

.social-x {
  color: #f7f7f7 !important;
}

.social-instagram {
  color: #ff66cc !important;
}

.social-facebook {
  color: #79a8ff !important;
}

.social-youtube {
  color: #ff4b55 !important;
}

.social-icon svg {
  width: 58%;
  height: 58%;
  display: block;
  fill: currentColor;
  filter: drop-shadow(0 0 5px currentColor);
}

/* Containers */

.container,
.list-container {
  max-width: 1100px;
  margin: 45px auto;
  padding: 0 20px;
}

.list-container {
  max-width: 950px;
}

.category-box,
.empty-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow:
    0 0 20px rgba(255, 0, 204, 0.08),
    0 0 40px rgba(0, 240, 255, 0.04);
}

.category-box h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.category-box > p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* Home Page */

.home-container {
  max-width: 1180px;
  margin: 46px auto;
  padding: 0 20px;
}

.home-section {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow:
    0 0 18px rgba(255, 0, 204, 0.08),
    0 0 32px rgba(0, 240, 255, 0.04);
}

.home-section h2 {
  color: white;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 27px;
  text-shadow:
    0 0 8px var(--pink),
    0 0 16px var(--purple);
}

.home-wide {
  margin-bottom: 28px;
}

.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.home-medium-center {
  max-width: 680px;
  margin: 0 auto 28px auto;
}

.home-small-center {
  max-width: 440px;
  margin: 0 auto;
  transform: rotate(-1deg);
}

.home-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  justify-items: center;
}

.home-links.three-rows {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
}

.home-links a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
  font-size: 15px;
  text-align: center;
  width: 100%;
}

.home-links a:hover {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 0, 204, 0.7);
}

.friends-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Listings */

.list-title-row {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.list-title-row h2 {
  text-transform: capitalize;
  font-size: 28px;
}

.list-title-row p {
  color: var(--muted);
  margin-top: 5px;
}

.classified-list {
  display: flex;
  flex-direction: column;
}

.classified-row-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 6px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.classified-row-link:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 12px rgba(255, 0, 204, 0.18),
    0 0 18px rgba(0, 240, 255, 0.1);
  transform: translateX(6px);
}

.classified-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.classified-location,
.classified-meta {
  color: white;
  text-shadow:
    0 0 8px var(--pink),
    0 0 18px var(--purple);
}

.classified-location {
  font-size: 14px;
  margin-bottom: 4px;
}

.classified-title {
  color: var(--blue);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.classified-meta {
  font-size: 14px;
}

.classified-thumb {
  width: 70px;
  height: 70px;
  min-width: 70px;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.classified-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
}

.moon-thumb {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* Forms */

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  background: #080808;
  color: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Ad Details */

.ad-detail-box {
  position: relative;
}

.ad-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 204, 51, 0.25);
}

.map-btn:hover {
  background: var(--gold);
  color: black;
}

.ad-info-stack {
  margin: 18px 0;
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.ad-info-stack p {
  margin-bottom: 8px;
  color: white;
  text-shadow:
    0 0 8px var(--pink),
    0 0 18px var(--purple);
}

.ad-info-stack p:last-child {
  margin-bottom: 0;
}

.ad-info-stack strong {
  color: var(--blue);
}

.featured-image-wrap {
  margin: 28px 0 18px 0;
  text-align: center;
}

.featured-image {
  width: 100%;
  max-width: 620px;
  height: 340px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow:
    0 0 18px rgba(255, 0, 204, 0.18),
    0 0 28px rgba(0, 240, 255, 0.1);
  transition: transform 0.25s ease;
}

.featured-image:hover {
  transform: scale(1.01);
}

.ad-thumbnail-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 28px 0;
}

.ad-thumbnail-button {
  width: 150px;
  height: 110px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #050505;
  cursor: pointer;
}

.ad-thumbnail-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Message box */

.ad-message-box {
  margin-top: 24px;
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.ad-description-title {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 28px;
  font-weight: bold;
  text-shadow:
    0 0 8px var(--pink),
    0 0 18px var(--purple);
}

.ad-message-box p {
  color: #d7d7d7;
  line-height: 1.7;
  white-space: pre-wrap;
}

/* Photo Lightbox */

.no-scroll {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox-overlay.active-lightbox {
  display: flex;
}

.lightbox-content {
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.lightbox-image-wrap {
  flex: 1;
  text-align: center;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 25px;
  background: #050505;
  border: 1px solid var(--line);
}

#lightboxCounter {
  margin-top: 12px;
  color: white;
}

.lightbox-arrow,
.lightbox-close {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  cursor: pointer;
}

.lightbox-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 30px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  background: var(--blue);
  color: black;
}

/* Map Overlay */

.map-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.map-overlay.active-map {
  display: flex;
}

.map-box {
  width: min(950px, 100%);
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow:
    0 0 24px rgba(255, 0, 204, 0.22),
    0 0 35px rgba(0, 240, 255, 0.12);
}

.map-box h3 {
  color: var(--blue);
  margin-bottom: 14px;
}

.map-box iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 14px;
}

.map-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 30px;
  cursor: pointer;
}

.map-close:hover {
  background: var(--blue);
  color: black;
}

/* Standalone approximate-location map */

.ad-map-page {
  min-height: 100vh;
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 204, 0.12), transparent 36%),
    #030303;
}

.ad-map-header {
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 0, 204, 0.45);
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.16);
}

.ad-map-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(18px, 2.1vw, 30px);
  text-shadow:
    0 0 5px #fff,
    0 0 13px #ff00cc;
}

.ad-map-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.ad-map-back {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #00f0ff;
  border: 1px solid #00f0ff;
  border-radius: 9px;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.34);
}

.ad-map-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 34px auto;
}

.ad-map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 0, 204, 0.7);
  border-radius: 20px;
  background: #0a0a0a;
  box-shadow:
    0 0 22px rgba(255, 0, 204, 0.22),
    0 0 36px rgba(0, 240, 255, 0.1);
}

.ad-map-heading {
  padding: 22px 24px 20px;
}

.ad-map-heading p {
  margin: 0 0 5px;
  color: #ffcc33;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-map-heading h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(22px, 3vw, 39px);
  text-transform: none;
  text-shadow: 0 0 10px rgba(255, 0, 204, 0.55);
}

.ad-map-canvas {
  width: 100%;
  height: min(66vh, 650px);
  min-height: 420px;
  border-top: 1px solid rgba(0, 240, 255, 0.45);
  border-bottom: 1px solid rgba(0, 240, 255, 0.45);
  background: #151515;
}

.ad-map-canvas .leaflet-tile,
.ad-map-canvas .leaflet-marker-icon,
.ad-map-canvas .leaflet-marker-shadow {
  max-width: none !important;
  max-height: none !important;
}

.ad-map-caption {
  padding: 18px 24px 22px;
  display: grid;
  gap: 5px;
  font-size: 17px;
}

.ad-map-caption strong {
  color: #fff;
  font-family: "Orbitron", sans-serif;
}

.ad-map-caption span {
  color: #cfcfcf;
}

.ad-map-unavailable {
  min-height: 330px;
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid rgba(0, 240, 255, 0.4);
}

.ad-map-unavailable h2 {
  color: #ffcc33;
}

.ad-map-page .leaflet-control-attribution {
  color: #222;
}

@media (max-width: 650px) {
  .ad-map-header {
    min-height: 64px;
    padding: 9px 12px;
  }

  .ad-map-brand {
    gap: 7px;
    font-size: 15px;
  }

  .ad-map-brand img {
    width: 42px;
    height: 42px;
  }

  .ad-map-back {
    padding: 8px 9px;
    font-size: 12px;
  }

  .ad-map-shell {
    width: calc(100% - 18px);
    margin: 18px auto;
  }

  .ad-map-heading {
    padding: 17px 16px 15px;
  }

  .ad-map-canvas {
    min-height: 480px;
    height: 65vh;
  }

  .ad-map-caption {
    padding: 16px;
    font-size: 15px;
  }
}

/* ==========================================================
   CATEGORY HUBS
========================================================== */

.category-hub-back-nav {
  display: flex;
  justify-content: center;
  margin: 0 auto 19px;
}

.all-kats-back-btn,
.emporium-return-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 27px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(145, 246, 255, 0.84);
  border-radius: 27px;
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.16), transparent 35%, rgba(255, 0, 204, 0.16)),
    url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
    #030506;
  box-shadow:
    0 0 4px rgba(225, 255, 255, 0.64),
    0 0 15px rgba(0, 240, 255, 0.52),
    0 0 27px rgba(255, 0, 204, 0.26),
    inset 0 0 13px rgba(255, 255, 255, 0.09);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow:
    0 0 4px #fff,
    0 0 11px rgba(0, 240, 255, 0.94),
    0 0 20px rgba(255, 0, 204, 0.62);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.all-kats-back-btn::before,
.emporium-return-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 21%,
    rgba(255, 255, 255, 0.22) 46%,
    transparent 70%
  );
  transform: translateX(-125%);
  animation: all-kats-button-light 5.6s ease-in-out infinite;
  pointer-events: none;
}

.all-kats-back-btn:hover,
.emporium-return-btn:hover {
  color: #fff;
  filter: brightness(1.16);
  transform: translateY(-2px);
}

@keyframes all-kats-button-light {
  0%,
  62% {
    transform: translateX(-125%);
  }
  82%,
  100% {
    transform: translateX(125%);
  }
}

.category-hub-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 0, 204, 0.16), transparent 31%),
    radial-gradient(circle at 20% 52%, rgba(0, 240, 255, 0.08), transparent 29%),
    #030303;
}

.category-hub-header {
  padding: 22px 20px 12px;
  display: flex;
  justify-content: center;
}

.category-hub-brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: #fff;
  text-decoration: none;
}

.category-hub-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 9px rgba(255, 0, 204, 0.72))
    drop-shadow(0 0 15px rgba(0, 240, 255, 0.38));
}

.category-hub-brand span {
  display: flex;
  flex-direction: column;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.91;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 4px #fff,
    0 0 12px #ff00cc,
    0 0 25px rgba(138, 43, 226, 0.88);
}

.category-hub-main {
  flex: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 5px auto 38px;
}

.category-hub-location {
  margin: 4px auto 25px;
  text-align: center;
}

.category-hub-location p {
  margin: 0 0 2px;
  color: #ffcc33;
  font-family: "Lobster Two", cursive;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.75),
    0 0 16px rgba(255, 204, 51, 0.9);
}

.category-hub-location span {
  color: #ffcc33;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: 0.27em;
  text-transform: uppercase;
  text-shadow: 0 0 11px rgba(255, 204, 51, 0.75);
}

.category-hub-panel {
  padding: clamp(24px, 4vw, 45px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 32%),
    rgba(7, 7, 8, 0.94);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.2),
    0 0 29px rgba(255, 0, 204, 0.2),
    0 0 42px rgba(0, 240, 255, 0.12),
    inset 0 0 24px rgba(255, 255, 255, 0.035);
}

.category-hub-sign {
  position: relative;
  width: min(570px, 92%);
  min-height: 132px;
  margin: 0 auto 34px;
  padding: 25px 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 68px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  isolation: isolate;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.48))
    drop-shadow(0 0 22px rgba(0, 240, 255, 0.68));
}

.category-hub-sign::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: inherit;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.2),
    0 0 22px rgba(0, 240, 255, 0.25);
}

.category-hub-sign-blue {
  background-image: url("/images/category-button-neon-texture.webp?v=1");
}

.category-hub-sign-crimson {
  background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1");
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.38))
    drop-shadow(0 0 24px rgba(255, 35, 60, 0.76));
}

.category-hub-sign-world {
  min-height: 160px;
  background-image: url("/images/category-wwb-neon-split-v1.webp?v=1");
  filter:
    drop-shadow(-5px 0 16px rgba(0, 210, 255, 0.75))
    drop-shadow(5px 0 16px rgba(255, 65, 125, 0.66));
}

.category-hub-sign-pink {
  background-image: url("/images/category-button-fnl-texture.webp?v=1");
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 25px rgba(255, 0, 204, 0.82));
}

.category-hub-sign strong {
  color: #fff;
  font-family: "Agdasima", Arial, sans-serif;
  font-size: clamp(39px, 6vw, 66px);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 21px rgba(0, 240, 255, 0.82);
}

.category-hub-sign small {
  margin-top: 8px;
  color: #fff;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(13px, 2vw, 21px);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.88);
}

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

.category-hub-subcat {
  min-height: 61px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #f8f8f8;
  border: 1px solid rgba(0, 240, 255, 0.44);
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-family: "Agdasima", Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.02;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.1), transparent 62%),
    rgba(0, 19, 23, 0.7);
  box-shadow:
    0 0 9px rgba(0, 240, 255, 0.19),
    inset 0 0 12px rgba(0, 240, 255, 0.06);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.category-hub-subcat:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.32),
    0 0 20px rgba(0, 240, 255, 0.4),
    inset 0 0 15px rgba(0, 240, 255, 0.1);
}

.category-hub-page.category-hub-pink .category-hub-subcat {
  border-color: rgba(255, 0, 153, 0.58);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 153, 0.14), transparent 64%),
    rgba(31, 0, 18, 0.72);
  box-shadow:
    0 0 10px rgba(255, 0, 153, 0.28),
    inset 0 0 12px rgba(255, 0, 204, 0.07);
}

.category-hub-subcat.hub-feature-pink {
  color: #fff5fd;
  border-color: rgba(255, 42, 216, 0.96);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 58, 220, 0.28), transparent 64%),
    linear-gradient(145deg, rgba(71, 0, 56, 0.9), rgba(25, 0, 22, 0.92));
  text-shadow:
    0 0 4px #fff,
    0 0 11px rgba(255, 0, 204, 0.9);
  box-shadow:
    0 0 7px rgba(255, 255, 255, 0.3),
    0 0 17px rgba(255, 0, 204, 0.68),
    0 0 29px rgba(255, 0, 204, 0.26),
    inset 0 0 17px rgba(255, 0, 204, 0.2);
}

.category-hub-subcat.hub-feature-green {
  color: #f4fff6;
  border-color: rgba(106, 255, 134, 0.96);
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 255, 122, 0.25), transparent 64%),
    linear-gradient(145deg, rgba(0, 55, 19, 0.9), rgba(0, 24, 11, 0.94));
  text-shadow:
    0 0 4px #fff,
    0 0 11px rgba(88, 255, 122, 0.86);
  box-shadow:
    0 0 7px rgba(255, 255, 255, 0.28),
    0 0 17px rgba(88, 255, 122, 0.62),
    0 0 29px rgba(88, 255, 122, 0.23),
    inset 0 0 17px rgba(88, 255, 122, 0.18);
}

.category-hub-subcat.hub-feature-gold {
  color: #fffdf1;
  border-color: rgba(255, 215, 80, 0.98);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 204, 51, 0.27), transparent 64%),
    linear-gradient(145deg, rgba(64, 45, 0, 0.92), rgba(27, 18, 0, 0.95));
  text-shadow:
    0 0 4px #fff,
    0 0 11px rgba(255, 204, 51, 0.9);
  box-shadow:
    0 0 7px rgba(255, 255, 255, 0.28),
    0 0 17px rgba(255, 204, 51, 0.64),
    0 0 29px rgba(255, 204, 51, 0.24),
    inset 0 0 17px rgba(255, 204, 51, 0.19);
}

.category-hub-subcat.hub-feature-blue {
  color: #f2feff;
  border-color: rgba(64, 247, 255, 0.98);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.27), transparent 64%),
    linear-gradient(145deg, rgba(0, 48, 55, 0.92), rgba(0, 20, 26, 0.95));
  text-shadow:
    0 0 4px #fff,
    0 0 11px rgba(0, 240, 255, 0.9);
  box-shadow:
    0 0 7px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(0, 240, 255, 0.68),
    0 0 30px rgba(0, 240, 255, 0.25),
    inset 0 0 17px rgba(0, 240, 255, 0.2);
}

.hub-icon {
  flex: 0 0 auto;
  font-size: 0.8em;
}

.hub-icon-heart {
  color: #ff315f;
  text-shadow: 0 0 9px rgba(255, 49, 95, 0.9);
}

.hub-icon-bolt {
  color: #00eaff;
  text-shadow: 0 0 9px rgba(0, 234, 255, 0.9);
}

.hub-icon-flame {
  filter: drop-shadow(0 0 7px rgba(255, 61, 32, 0.8));
}

.category-hub-footer {
  padding: 28px 16px 34px;
  color: #ffcc33;
  border-top: 1px solid rgba(255, 0, 204, 0.46);
  text-align: center;
  font-family: "Patrick Hand SC", cursive;
  font-size: 18px;
  line-height: 1.3;
  background: #010101;
  text-shadow: 0 0 8px rgba(255, 204, 51, 0.54);
}

@media (max-width: 800px) {
  .category-hub-back-nav {
    margin-bottom: 15px;
  }

  .all-kats-back-btn {
    width: min(100%, 390px);
    min-height: 50px;
    padding: 9px 18px;
    font-size: 15px;
  }

  .category-hub-header {
    padding: 16px 12px 9px;
  }

  .category-hub-brand {
    gap: 10px;
  }

  .category-hub-brand img {
    width: 66px;
    height: 66px;
  }

  .category-hub-brand span {
    font-size: 31px;
  }

  .category-hub-main {
    width: min(100% - 18px, 580px);
    margin-bottom: 24px;
  }

  .category-hub-location {
    margin-bottom: 21px;
  }

  .category-hub-location p {
    font-size: 39px;
  }

  .category-hub-location span {
    font-size: 16px;
  }

  .category-hub-panel {
    padding: 22px 13px 24px;
    border-radius: 21px;
  }

  .category-hub-sign {
    width: min(390px, 96%);
    min-height: 104px;
    margin-bottom: 25px;
    padding: 20px 38px;
  }

  .category-hub-sign-world {
    min-height: 145px;
  }

  .category-hub-sign strong {
    font-size: 44px;
  }

  .category-hub-sign small {
    max-width: 260px;
    font-size: 14px;
  }

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

  .category-hub-grid-friends-love,
  .category-hub-grid-resumes {
    grid-template-columns: 1fr;
  }

  .category-hub-subcat {
    min-height: 53px;
    padding: 8px 7px;
    border-radius: 12px;
    font-size: 20px;
  }
}

/* ==========================================================
   ALL KATS — SHARED DESKTOP + MOBILE CATEGORY DIRECTORY
========================================================== */

.all-kats-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 0, 204, 0.18), transparent 31%),
    radial-gradient(circle at 18% 62%, rgba(0, 240, 255, 0.09), transparent 32%),
    #020202;
}

.all-kats-header {
  display: flex;
  justify-content: center;
  padding: 22px 16px 8px;
}

.all-kats-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
}

.all-kats-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 0, 204, 0.72))
    drop-shadow(0 0 14px rgba(0, 240, 255, 0.36));
}

.all-kats-brand span {
  display: flex;
  flex-direction: column;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.91;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 4px #fff,
    0 0 12px #ff00cc,
    0 0 25px rgba(138, 43, 226, 0.88);
}

.all-kats-main {
  flex: 1;
  width: min(1180px, calc(100% - 30px));
  margin: 6px auto 40px;
}

.all-kats-location {
  margin: 4px auto 22px;
  text-align: center;
}

.all-kats-location p {
  margin: 0 0 3px;
  color: #ffcc33;
  font-family: "Lobster Two", cursive;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.72),
    0 0 16px rgba(255, 204, 51, 0.9);
}

.all-kats-location span {
  color: #ffcc33;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(15px, 1.8vw, 21px);
  letter-spacing: 0.27em;
  text-transform: uppercase;
  text-shadow: 0 0 11px rgba(255, 204, 51, 0.72);
}

.all-kats-stage {
  padding: clamp(25px, 4vw, 45px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 34%),
    rgba(7, 7, 8, 0.95);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.2),
    0 0 29px rgba(255, 0, 204, 0.2),
    0 0 42px rgba(0, 240, 255, 0.12);
  text-align: center;
}

.all-kats-stage h1 {
  margin: 0 0 29px;
  color: #fff;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 53px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 5px #fff,
    0 0 14px #ff00cc,
    0 0 27px rgba(0, 240, 255, 0.5);
}

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

.all-kats-card {
  --all-kats-glow: rgba(0, 240, 255, 0.72);
  min-height: 118px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(170, 245, 255, 0.74);
  border-radius: 60px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2)),
    url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
    #030506;
  box-shadow:
    0 0 4px rgba(235, 255, 255, 0.58),
    0 0 14px var(--all-kats-glow),
    0 0 26px rgba(255, 0, 204, 0.2);
  text-decoration: none;
  filter: brightness(1.03);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.all-kats-card:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.22);
}

.all-kats-card strong {
  font-family: "Agdasima", Arial, sans-serif;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 21px var(--all-kats-glow);
}

.all-kats-card small {
  margin-top: 7px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(10px, 1.3vw, 15px);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.82);
}

.all-kats-card-crimson {
  --all-kats-glow: rgba(255, 43, 69, 0.8);
  border-color: rgba(255, 101, 120, 0.8);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.18)),
    url("/images/category-crimson-rock-sign-v1.webp?v=1");
}

.all-kats-card-world {
  --all-kats-glow: rgba(88, 170, 255, 0.8);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15)),
    url("/images/category-wwb-neon-split-v1.webp?v=1");
}

.all-kats-card-pink {
  --all-kats-glow: rgba(255, 0, 204, 0.86);
  border-color: rgba(255, 102, 213, 0.82);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.16)),
    url("/images/category-button-fnl-texture.webp?v=1");
}

.emporium-return-btn {
  margin-top: 36px;
  border-color: rgba(255, 226, 112, 0.86);
  background:
    linear-gradient(90deg, rgba(255, 204, 51, 0.13), transparent 35%, rgba(255, 0, 204, 0.14)),
    url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
    #050403;
  box-shadow:
    0 0 4px rgba(255, 249, 220, 0.64),
    0 0 15px rgba(255, 204, 51, 0.5),
    0 0 26px rgba(255, 0, 204, 0.22);
  text-shadow:
    0 0 4px #fff,
    0 0 11px rgba(255, 204, 51, 0.94),
    0 0 20px rgba(255, 0, 204, 0.48);
}

@media (max-width: 800px) {
  .all-kats-header {
    padding-top: 16px;
  }

  .all-kats-brand {
    gap: 10px;
  }

  .all-kats-brand img {
    width: 64px;
    height: 64px;
  }

  .all-kats-brand span {
    font-size: 30px;
  }

  .all-kats-main {
    width: min(100% - 18px, 570px);
    margin-bottom: 25px;
  }

  .all-kats-location p {
    font-size: 39px;
  }

  .all-kats-location span {
    font-size: 15px;
  }

  .all-kats-stage {
    padding: 24px 13px 29px;
    border-radius: 21px;
  }

  .all-kats-stage h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .all-kats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .all-kats-card {
    width: min(100%, 410px);
    min-height: 91px;
    margin: 0 auto;
    border-radius: 48px;
  }

  .all-kats-card strong {
    font-size: 36px;
  }

  .all-kats-card small {
    max-width: 310px;
    font-size: 12px;
  }

  .emporium-return-btn {
    width: min(100%, 410px);
    min-height: 57px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .category-hub-brand img {
    width: 58px;
    height: 58px;
  }

  .category-hub-brand span {
    font-size: 27px;
  }

  .category-hub-location p {
    font-size: 35px;
  }

  .category-hub-panel {
    padding-left: 10px;
    padding-right: 10px;
  }

  .category-hub-sign {
    width: 100%;
    min-height: 96px;
    padding: 17px 32px;
  }

  .category-hub-sign-world {
    min-height: 136px;
  }

  .category-hub-sign strong {
    font-size: 39px;
  }

  .category-hub-subcat {
    min-height: 50px;
    font-size: 18px;
  }
}

/* Los Angeles posting page */

.category-box h1 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow:
    0 0 10px var(--pink),
    0 0 20px var(--pink),
    0 0 40px var(--purple);
  font-size: 38px;
}

/* Change City */

label[for="changeCity"] {
  display: block;
  color: var(--gold);
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#changeCity {
  background: #151515;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: bold;
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.18);
}

#changeCity option {
  background: #151515;
  color: var(--gold);
}

/* Footer */

footer {
  text-align: center;
  padding: 32px;
  background: #080808;
  border-top: 1px solid var(--line);
  color: #888;
  margin-top: 60px;
}

/* Mobile */

@media (max-width: 950px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-left-panel,
  .hero-right-panel {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-content {
    padding-top: 20px;
  }
}

@media (max-width: 800px) {
  .navbar,
  .list-header {
    flex-direction: column;
    height: auto;
    gap: 14px;
    padding: 18px;
    text-align: center;
  }

  .home-navbar .post-btn {
    position: static;
  }

  .brand-emblem {
    gap: 10px;
  }

  .brand-emblem img {
    width: 50px;
    height: 50px;
  }

  .site-logo {
    font-size: 36px;
    text-align: center;
  }

  .brand-link {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding: 22px 16px 36px;
  }

  .hero-tagline {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .home-container {
    margin: 28px auto;
    padding: 0 14px;
  }

  .home-two-col {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-links,
  .home-links.three-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-small-center,
  .home-medium-center {
    max-width: 100%;
    transform: none;
  }

  .container,
  .list-container {
    margin: 28px auto;
    padding: 0 14px;
  }

  .category-box,
  .empty-list {
    padding: 22px;
  }

  .category-box h1 {
    font-size: 28px;
  }

  .classified-title {
    font-size: 17px;
  }

  .classified-location,
  .classified-meta {
    font-size: 12px;
  }

  .classified-thumb,
  .classified-thumb img,
  .moon-thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .ad-top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-image {
    height: 260px;
    max-width: 100%;
  }

  .ad-thumbnail-button {
    width: 120px;
    height: 90px;
  }

  .lightbox-content {
    gap: 8px;
  }

  .lightbox-arrow {
    width: 19px;
    height: 19px;
    font-size: 28px;
  }

  .map-box iframe {
    height: 320px;
  }
}


.hero-tagline {
  font-family: "Lobster", cursive;
  font-size: 42px;
  font-weight: 400;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.37),
    0 0 13px rgba(255, 0, 204, 0.61),
    0 0 25px rgba(138, 43, 226, 0.43);
}

.hero-city,
.hero-description {
  font-family: "Lobster Two", cursive;
  font-weight: 400;
}

.hero-city {
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: none;
}

.hero-city-name,
.hero-region-name {
  display: block;
}

.hero-region-name {
  margin-top: 3px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 0.5em;
  letter-spacing: 4px;
}

.hero-description {
  font-size: 22px;
  line-height: 1.45;
  text-shadow:
    0 0 5px rgba(220, 255, 255, 0.42),
    0 0 12px rgba(0, 240, 255, 0.48),
    0 0 20px rgba(0, 240, 255, 0.2);
}

.quick-links a {
  font-family: "Patrick Hand SC", cursive;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}

.video-card h3 {
  font-family: "Patrick Hand SC", cursive;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.music-link,
.social-box p {
  font-family: "Patrick Hand SC", cursive;
  font-weight: 400;
}

.social-box p {
  font-size: 24px;
  text-transform: none;
}

.home-section h2 {
  font-family: "Orbitron", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.home-links a {
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

@media (max-width: 800px) {
  .hero-city {
    font-size: 24px;
  }

  .hero-tagline {
    font-size: 34px;
  }

  .hero-description {
    font-size: 19px;
  }

  .quick-links a,
  .video-card h3,
  .social-box p {
    font-size: 21px;
  }

  .home-links a {
    font-size: 20px;
  }
}


/* Posting area page refactor */

.posting-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.posting-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 0, 204, 0.45))
    drop-shadow(0 0 12px rgba(0, 240, 255, 0.28));
}

.post-area-container {
  max-width: 980px;
}

.post-area-box h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 34px;
  text-transform: none;
}

.post-area-box .eyebrow {
  color: var(--gold);
  font-family: "Lobster Two", cursive;
  font-size: 22px;
  margin-bottom: 10px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.45),
    0 0 14px rgba(255, 0, 204, 0.18);
}

.post-area-box h2 {
  font-family: "Orbitron", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.area-form {
  gap: 12px;
}

.area-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-top: 4px;
}

.area-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(0, 240, 255, 0.035);
  border: 1px solid rgba(0, 240, 255, 0.16);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.08;
  cursor: pointer;
  transition: 0.2s ease;
}

.area-option:hover {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.13),
    inset 0 0 10px rgba(255, 0, 204, 0.05);
}

.area-option input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--blue);
}

.change-city-block {
  margin-top: 8px;
}

.continue-btn {
  width: 130px;
  align-self: center;
  text-align: center;
  padding: 8px 14px;
  margin-top: 10px;
}

.post-flow-btn,
.continue-btn {
  width: 130px;
  align-self: center;
  text-align: center;
  padding: 8px 14px;
  margin-top: 10px;
}

.eagle-icon {
  font-size: 42px;
  margin-right: 8px;
  vertical-align: middle;

  text-shadow:
    0 0 8px #ff00cc,
    0 0 16px #8a2be2,
    0 0 24px #00f0ff;
}

@media (max-width: 800px) {
  .post-area-box h1 {
    font-size: 25px;
  }

  .area-options {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .area-option {
    font-size: 20px;
    padding: 8px 9px;
  }

  .continue-btn {
    width: 130px;
    align-self: center;
    text-align: center;
  }

  .posting-brand {
    justify-content: center;
  }
}


/* Create Ad page refinements */

.create-ad-box h1{
  font-family:"Orbitron", Arial, sans-serif;
  text-transform:none;
  letter-spacing:2px;
}

.create-ad-form input[type="file"]{
  border:2px solid rgba(0,240,255,.35);
  border-radius:14px;
  padding:14px;
  background:rgba(0,240,255,.04);
  box-shadow:
    0 0 12px rgba(0,240,255,.12),
    inset 0 0 10px rgba(255,0,204,.06);
}

.create-ad-form input[type="file"]::file-selector-button{
  background:linear-gradient(135deg,#ff00cc,#8a2be2);
  color:white;
  border:none;
  border-radius:12px;
  padding:10px 16px;
  margin-right:16px;
  cursor:pointer;
  font-family:"Orbitron", Arial, sans-serif;
  font-weight:700;
}

.post-submit-btn{
  width:150px;
  margin:16px auto 0 auto;
  display:block;
}


/* Subcategory listings page polish */

.list-hero-card {
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow:
    0 0 20px rgba(255, 0, 204, 0.12),
    0 0 36px rgba(0, 240, 255, 0.08);
}

.list-eyebrow {
  font-family: "Lobster Two", cursive;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 8px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.48),
    0 0 14px rgba(255, 0, 204, 0.2);
}

.list-hero-card h1 {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-size: 38px;
  margin-bottom: 12px;
  text-shadow:
    0 0 10px var(--pink),
    0 0 20px var(--purple),
    0 0 30px rgba(0, 240, 255, 0.22);
}

.list-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--blue);
  font-family: "Patrick Hand SC", cursive;
  font-size: 24px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 999px;
  padding: 7px 18px;
  background: rgba(0, 240, 255, 0.045);
  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.16),
    inset 0 0 10px rgba(255, 0, 204, 0.06);
}

.list-count span {
  color: var(--gold);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 22px;
}

@media (max-width: 800px) {
  .list-hero-card {
    padding: 22px 18px;
  }

  .list-eyebrow {
    font-size: 21px;
  }

  .list-hero-card h1 {
    font-size: 27px;
  }

  .list-count {
    font-size: 21px;
  }
}


/* Ad Details Page KEMP Refinements */

.reply-section {
  margin-top: 30px;
}

.reply-section h3 {
  font-family: "Orbitron", Arial, sans-serif;
  color: var(--gold);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.5),
    0 0 16px rgba(255, 0, 204, 0.22);
}

.reply-btn {
  width: 150px;
  display: block;
  margin: 18px auto 0 auto;
  text-align: center;
  padding: 8px 14px;
}

.ad-detail-box > h2 {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  text-shadow:
    0 0 10px rgba(255, 0, 204, 0.45),
    0 0 20px rgba(138, 43, 226, 0.28),
    0 0 28px rgba(0, 240, 255, 0.14);
}

@media (max-width: 800px) {
  .reply-btn {
    width: 150px;
    align-self: center;
  }
}


/* Job Category page refactor */

.job-category-container {
  max-width: 1120px;
}

.job-category-box h1 {
  font-family: "Orbitron", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 2px;
  text-align: center;
}

.job-category-box .eyebrow {
  color: var(--gold);
  font-family: "Lobster Two", cursive;
  font-size: 23px;
  text-align: center;
  margin-bottom: 10px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.45),
    0 0 14px rgba(255, 0, 204, 0.18);
}

.job-category-box h2 {
  font-family: "Orbitron", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.posting-price {
  width: fit-content;
  margin: 0 auto 24px auto !important;
  color: var(--gold) !important;
  font-family: "Patrick Hand SC", cursive;
  font-size: 26px;
  border: 1px solid rgba(255, 204, 51, 0.45);
  border-radius: 999px;
  padding: 7px 20px;
  background: rgba(255, 204, 51, 0.045);
  box-shadow:
    0 0 10px rgba(255, 204, 51, 0.16),
    inset 0 0 10px rgba(255, 0, 204, 0.05);
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.55),
    0 0 16px rgba(255, 0, 204, 0.16);
}

.job-category-form {
  gap: 14px;
}

.job-category-options {
  columns: 3 250px;
  column-gap: 18px;
  margin-top: 4px;
}

.job-category-option {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 9px 0;
  padding: 9px 11px;
  background: rgba(0, 240, 255, 0.035);
  border: 1px solid rgba(0, 240, 255, 0.16);
  border-radius: 11px;
  color: var(--text);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  cursor: pointer;
  transition: 0.2s ease;
}

.job-category-option:hover {
  border-color: rgba(0, 240, 255, 0.48);
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.14),
    inset 0 0 12px rgba(255, 0, 204, 0.05);
  transform: translateY(-1px);
}

.job-category-option input {
  width: auto;
  min-width: 14px;
  accent-color: var(--blue);
}

.job-category-option span {
  display: block;
}

.job-category-continue {
  width: 130px;
  align-self: center;
  text-align: center;
  padding: 8px 14px;
  margin-top: 10px;
}

.category-box h1,
.post-area-box h1,
.job-category-box h1 {
  font-family: "Orbitron", Arial, sans-serif;
}


.back-btn {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--gold);
  text-decoration: none;

  border: 1px solid rgba(255, 204, 51, 0.4);
  border-radius: 10px;

  padding: 8px 14px;

  font-family: "Orbitron", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;

  background: rgba(255, 204, 51, 0.05);

  box-shadow:
    0 0 10px rgba(255, 204, 51, 0.15),
    inset 0 0 10px rgba(255, 204, 51, 0.05);

  transition: all 0.2s ease;
}

.back-btn:hover {
  background: var(--gold);
  color: black;

  box-shadow:
    0 0 15px rgba(255, 204, 51, 0.35);
}


/* Landing Page subcategory card refactor */

.home-links.home-link-list,
.home-links.home-link-list.three-rows {
  display: block;
  columns: 3 230px;
  column-gap: 18px;
}

.home-links.home-link-list a {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block;
  width: 100%;
  margin: 0 0 9px 0;
  padding: 9px 11px;

  color: var(--text);
  text-align: left;
  text-decoration: none;

  background: rgba(0, 240, 255, 0.035);
  border: 1px solid rgba(0, 240, 255, 0.16);
  border-radius: 11px;

  font-family: "Agdasima", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.4px;

  transition: 0.2s ease;
}

.home-links.home-link-list a:hover {
  color: var(--blue);
  border-color: rgba(0, 240, 255, 0.48);
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.14),
    inset 0 0 12px rgba(255, 0, 204, 0.05);
  transform: translateY(-1px);
}

.home-small-center .home-links.home-link-list,
.friends-love-section .home-links.home-link-list {
  columns: 1;
}

.home-small-center .home-links.home-link-list a,
.friends-love-section .home-links.home-link-list a {
  text-align: center;
}

@media (max-width: 800px) {
  .home-links.home-link-list,
  .home-links.home-link-list.three-rows {
    columns: 1;
  }

  .home-links.home-link-list a {
    font-size: 21px;
    padding: 10px 10px;
    margin-bottom: 8px;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .job-category-container {
    margin: 24px auto;
  }

  .job-category-box h1 {
    font-size: 25px;
  }

  .job-category-box h2 {
    font-size: 25px;
  }

  .posting-price {
    font-size: 23px;
    padding: 6px 16px;
  }

  .job-category-options {
    columns: 1;
  }

  .job-category-option {
    font-size: 21px;
    padding: 10px 10px;
    margin-bottom: 8px;
  }

  .job-category-continue {
    width: 130px;
    align-self: center;
  }
}

/* Workforce money-maker subcategory highlights */

.home-links.home-link-list a.money-subcat {
  position: relative;
  color: white;
  font-weight: 700;
  border-width: 2px;
  transform: translateZ(0);
}

.home-links.home-link-list a.money-subcat:hover {
  transform: translateY(-2px);
}

.home-links.home-link-list a.rest-bars-subcat {
  color: #fff4fb;
  border-color: rgba(255, 0, 204, 0.55);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.18), transparent 38%),
    rgba(255, 0, 204, 0.055);
  box-shadow:
    0 0 12px rgba(255, 0, 204, 0.24),
    inset 0 0 12px rgba(255, 0, 204, 0.08);
}

.home-links.home-link-list a.labor-subcat {
  color: #f1fff5;
  border-color: rgba(88, 255, 122, 0.55);
  background:
    radial-gradient(circle at top left, rgba(88, 255, 122, 0.16), transparent 38%),
    rgba(88, 255, 122, 0.045);
  box-shadow:
    0 0 12px rgba(88, 255, 122, 0.22),
    inset 0 0 12px rgba(88, 255, 122, 0.06);
}

.home-links.home-link-list a.skilled-subcat {
  color: #fff8dc;
  border-color: rgba(255, 204, 51, 0.6);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.17), transparent 38%),
    rgba(255, 204, 51, 0.05);
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.22),
    inset 0 0 12px rgba(255, 204, 51, 0.06);
}

.home-links.home-link-list a.money-subcat::after {
  content: "★";
  float: right;
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.85),
    0 0 16px rgba(255, 0, 204, 0.35);
}


/* Additional LP money-maker highlights */

.home-links.home-link-list a.office-subcat {
  color: #eef7ff;
  border-color: rgba(0, 240, 255, 0.6);
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.18), transparent 38%),
    rgba(0, 240, 255, 0.055);
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.24),
    inset 0 0 12px rgba(0, 240, 255, 0.08);
}

.home-links.home-link-list a.cars-subcat {
  color: #fff4fb;
  border-color: rgba(255, 0, 204, 0.55);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.16), transparent 38%),
    rgba(255, 0, 204, 0.05);
  box-shadow:
    0 0 12px rgba(255, 0, 204, 0.22),
    inset 0 0 12px rgba(255, 0, 204, 0.07);
}

.home-links.home-link-list a.moto-subcat {
  color: #f1fff5;
  border-color: rgba(88, 255, 122, 0.55);
  background:
    radial-gradient(circle at top left, rgba(88, 255, 122, 0.16), transparent 38%),
    rgba(88, 255, 122, 0.045);
  box-shadow:
    0 0 12px rgba(88, 255, 122, 0.22),
    inset 0 0 12px rgba(88, 255, 122, 0.06);
}

.home-links.home-link-list a.rvs-subcat {
  color: #fff8dc;
  border-color: rgba(255, 204, 51, 0.6);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.17), transparent 38%),
    rgba(255, 204, 51, 0.05);
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.22),
    inset 0 0 12px rgba(255, 204, 51, 0.06);
}

.home-links.home-link-list a.isaw-subcat {
  color: #fff4fb;
  border-color: rgba(255, 0, 204, 0.6);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.18), transparent 38%),
    rgba(255, 0, 204, 0.055);
  box-shadow:
    0 0 12px rgba(255, 0, 204, 0.24),
    inset 0 0 12px rgba(255, 0, 204, 0.08);
}

.home-links.home-link-list a.musicians-subcat {
  color: #fff8dc;
  border-color: rgba(255, 204, 51, 0.6);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.17), transparent 38%),
    rgba(255, 204, 51, 0.05);
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.22),
    inset 0 0 12px rgba(255, 204, 51, 0.06);
}


.safe-parking-link {
  color: #030303 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 44%),
    #a97505 !important;
  border-color: rgba(255, 235, 151, 0.98) !important;
  box-shadow:
    0 0 3px rgba(255, 246, 203, 0.96),
    0 0 16px rgba(255, 220, 84, 0.78),
    0 0 31px rgba(255, 204, 51, 0.37),
    inset 0 0 11px rgba(255, 255, 255, 0.27) !important;
  text-shadow:
    0 0 4px rgba(255, 248, 205, 0.88),
    0 0 9px rgba(255, 204, 51, 0.42);
}

.hero-left-panel .quick-links a:not(.weed-link) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%),
    #15bdca !important;
  box-shadow:
    0 0 3px rgba(205, 255, 255, 0.82),
    0 0 11px rgba(61, 245, 255, 0.52),
    0 0 20px rgba(0, 240, 255, 0.23),
    inset 0 0 11px rgba(255, 255, 255, 0.22) !important;
  text-shadow: none;
}

.hero-left-panel .quick-links a.safe-parking-link:not(.weed-link) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.23), transparent 44%),
    #e3b01b !important;
  box-shadow:
    0 0 3px rgba(255, 247, 210, 0.84),
    0 0 12px rgba(255, 220, 84, 0.56),
    0 0 21px rgba(255, 204, 51, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.24) !important;
  text-shadow: none;
}

.mobile-kat-nav {
  display: none;
}


.home-section {
  padding: 17px;
}

.home-section h2 {
  font-size: 25px;
  margin-bottom: 13px;
}

.home-wide,
.home-two-col {
  margin-bottom: 22px;
}

.home-links.home-link-list,
.home-links.home-link-list.three-rows {
  column-gap: 14px;
}

.home-links.home-link-list a {
  margin-bottom: 7px;
  padding: 6px 8px;
  border-radius: 9px;
  font-size: 17px;
  line-height: 1.02;
}

.home-links.home-link-list a.money-subcat {
  border-width: 1px;
}

/* Mobile landing page layout */
@media (max-width: 800px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    padding: 14px 10px 24px;
  }

  .home-navbar {
    display: block;
    padding: 0;
  }

  .brand-emblem {
    justify-content: center;
    gap: 8px;
    position: relative;
    padding-right: 54px;
  }

  .brand-emblem img:first-child {
    display: none;
  }

  .brand-emblem img:last-child {
    width: 54px;
    height: 54px;
    position: absolute;
    right: 0;
    top: 3px;
  }

  .site-logo {
    font-size: 30px;
    line-height: 0.95;
  }

  .home-navbar .post-btn {
    position: static;
    display: inline-block;
    margin: 14px auto 0;
    padding: 8px 13px;
    font-size: 14px;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 14px;
  }

  .hero-content {
    order: 1;
    padding-top: 0;
  }

  .hero-right-panel {
    order: 2;
  }

  .hero-left-panel {
    order: 3;
  }

  .hero-city {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .hero-tagline {
    font-size: 29px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.25;
  }

  .hero-left-panel,
  .hero-right-panel {
    max-width: 100%;
    gap: 12px;
  }

  .hero-right-panel .video-card {
    order: 1;
  }

  .hero-right-panel .quick-links {
    order: 2;
  }

  .hero-right-panel .social-box {
    order: 3;
  }

  .hero-left-panel .quick-links {
    order: 2;
  }

  .hero-left-panel .video-card {
    order: 1;
  }

  .video-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 0;
  }

  .video-box {
    border: 0;
    border-radius: 14px;
    aspect-ratio: 16 / 5.2;
  }

  .quick-links {
    gap: 8px;
  }

  .quick-links a {
    font-size: 18px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .social-box p {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .social-icon {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .desktop-home-cats {
    display: none;
  }

  .mobile-kat-nav {
    display: block;
    max-width: 520px;
    margin: 24px auto 0;
    padding: 0 14px 28px;
  }

  .mobile-kat-nav h2 {
    font-family: "Orbitron", Arial, sans-serif;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow:
      0 0 8px var(--pink),
      0 0 16px var(--purple);
  }

  .mobile-kat-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-kat-buttons a {
    display: block;
    width: 100%;
    color: var(--gold);
    text-decoration: none;
    text-align: center;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 204, 51, 0.7);
    border-radius: 16px;
    background:
      radial-gradient(circle at top left, rgba(255, 0, 204, 0.12), transparent 38%),
      rgba(0, 240, 255, 0.035);
    box-shadow:
      0 0 12px rgba(255, 204, 51, 0.14),
      inset 0 0 12px rgba(0, 240, 255, 0.06);
  }

  .mobile-kat-buttons a:active {
    transform: scale(0.98);
  }

  footer {
    margin-top: 20px;
    padding: 24px 14px;
    font-size: 13px;
  }
}


@media (max-width: 800px) {

  .hero-tagline,
  .hero-description {
    display: none;
  }

  .hero-content {
    order: 1;
    padding-top: 0;
    margin-bottom: 0;
  }

  .hero-city {
    margin-bottom: 0;
  }


  .hero-left-panel {
    order: 2;
  }

  .hero-right-panel {
    order: 3;
  }

  .hero-left-panel .quick-links {
    order: 1;
  }

  .hero-left-panel .video-card {
    order: 2;
  }

  .hero-layout {
    gap: 12px;
    padding-top: 12px;
  }

  .quick-links a {
    font-size: 18px;
    padding: 8px 10px;
  }

  .video-card h3 {
    font-size: 18px;
    padding: 6px 0;
  }


  .mobile-explore-title span {
    display: block;
  }

  .mobile-kat-nav h2.mobile-explore-title {
    line-height: 1.05;
    font-size: 25px;
    margin-bottom: 18px;
  }

  .mobile-kat-buttons {
    gap: 9px;
  }

  .mobile-kat-buttons a {
    padding: 11px 14px;
    font-size: 19px;
  }
}


.home-links.home-link-list,
.home-links.home-link-list.three-rows {
  text-align: center;
}

.home-links.home-link-list a {
  width: fit-content;
  min-width: 145px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}

.home-links.home-link-list a.money-subcat {
  min-width: 190px;
  padding-left: 13px;
  padding-right: 13px;
}

.home-links.home-link-list a.money-subcat::after {
  float: none;
  display: inline-block;
  margin-left: 8px;
}

.selected-category-box {
  margin: 15px 0 20px;
  padding: 15px;

  border: 1px solid rgba(255, 204, 51, 0.4);
  border-radius: 12px;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 0, 204, 0.08),
      transparent 45%
    ),
    rgba(255, 255, 255, 0.03);

  text-align: center;
}

.selected-category-label {
  color: #cccccc;
  margin-bottom: 6px;
}

.selected-category-name {
  font-family: "Orbitron", sans-serif;
  color: var(--gold);

  font-size: 22px;
  font-weight: bold;

  text-shadow:
    0 0 10px rgba(255, 204, 51, 0.4);
}

.selected-category-change {
  margin-top: 8px;
  font-size: 14px;
}

.selected-category-change a {
  color: var(--pink);
  text-decoration: none;
}

.photo-upload-label {
  margin-bottom: 14px;
}

#images {
  margin-bottom: 16px;
}

.photo-upload-note {
  margin-top: 14px;
  line-height: 1.5;
}

/* Mobile city centering */
@media (max-width: 800px) {
  .hero-content,
  .hero-city {
    width: 100%;
    text-align: center;
  }

  .hero-city {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-kat-buttons a {
    width: min(100%, 330px);
    margin-left: auto;
    margin-right: auto;
  }
}


/* Mobile category pages */

.mobile-category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 14px 8px;
  background: radial-gradient(circle at top, rgba(255, 0, 204, 0.14), transparent 60%), #050505;
}

.mobile-category-brand {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  text-decoration: none;
  text-align: center;
  line-height: 0.95;
  font-size: 30px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 0 10px var(--pink), 0 0 20px var(--purple), 0 0 30px rgba(0, 240, 255, 0.2);
}

.mobile-category-header img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 0, 204, 0.45)) drop-shadow(0 0 12px rgba(0, 240, 255, 0.25));
}

.mobile-category-container {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 14px 10px 28px;
}

.mobile-category-hero {
  text-align: center;
  margin-bottom: 16px;
  padding: 16px 10px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 0, 204, 0.12), transparent 42%), linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(8, 8, 8, 0.98));
  box-shadow: 0 0 18px rgba(255, 0, 204, 0.12), 0 0 32px rgba(0, 240, 255, 0.06);
}

.mobile-category-hero p {
  font-family: "Lobster Two", cursive;
  color: var(--gold);
  font-size: 25px;
  margin-bottom: 6px;
  text-shadow: 0 0 8px rgba(255, 204, 51, 0.45);
}

.mobile-category-hero h1 {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
  text-shadow: 0 0 10px var(--pink), 0 0 20px var(--purple);
}

.mobile-subcat-grid {
  display: grid;
  gap: 8px;
}

.mobile-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.mobile-one-col {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin: 0 auto;
}

.mobile-subcat-card {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.2px;
  padding: 8px 6px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 11px;
  background: rgba(0, 240, 255, 0.04);
  box-shadow: 0 0 9px rgba(0, 240, 255, 0.08), inset 0 0 9px rgba(255, 0, 204, 0.04);
}

.mobile-subcat-card:active {
  transform: scale(0.97);
}

.mobile-subcat-card[class*="mobile-feature"] {
  grid-column: 1 / -1;
  min-height: 48px;
  font-size: 21px;
  font-weight: 700;
  border-width: 2px;
}

.mobile-feature-rest,
.mobile-feature-cars,
.mobile-feature-isaw {
  color: #fff4fb;
  border-color: rgba(255, 0, 204, 0.62);
  background: radial-gradient(circle at top left, rgba(255, 0, 204, 0.18), transparent 42%), rgba(255, 0, 204, 0.055);
}

.mobile-feature-labor,
.mobile-feature-moto {
  color: #f1fff5;
  border-color: rgba(88, 255, 122, 0.6);
  background: radial-gradient(circle at top left, rgba(88, 255, 122, 0.18), transparent 42%), rgba(88, 255, 122, 0.05);
}

.mobile-feature-skilled,
.mobile-feature-rvs,
.mobile-feature-musicians {
  color: #fff8dc;
  border-color: rgba(255, 204, 51, 0.68);
  background: radial-gradient(circle at top left, rgba(255, 204, 51, 0.18), transparent 42%), rgba(255, 204, 51, 0.055);
}

.mobile-feature-office {
  color: #eef7ff;
  border-color: rgba(0, 240, 255, 0.65);
  background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.18), transparent 42%), rgba(0, 240, 255, 0.055);
}

@media (max-width: 430px) {
  .mobile-category-brand {
    font-size: 27px;
  }

  .mobile-category-header img {
    width: 52px;
    height: 52px;
  }

  .mobile-category-hero h1 {
    font-size: 25px;
  }

  .mobile-category-hero p {
    font-size: 23px;
  }

  .mobile-subcat-card {
    min-height: 42px;
    font-size: 16px;
    padding: 7px 4px;
    border-radius: 10px;
  }

  .mobile-subcat-card[class*="mobile-feature"] {
    min-height: 46px;
    font-size: 19px;
  }
}


/* Premium photo upload thumbnails + ordering */

.photo-upload-box {
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(0, 240, 255, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.07), transparent 45%),
    rgba(0, 240, 255, 0.025);
}

.photo-upload-label {
  display: inline-block;
  margin-bottom: 14px;
}

#images {
  margin-top: 8px;
  margin-bottom: 18px;
}

.photo-upload-note {
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.55;
  color: var(--muted);
}

.selected-files-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.selected-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.92), rgba(8, 8, 8, 0.92));
  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.07),
    inset 0 0 10px rgba(255, 0, 204, 0.035);
}

.selected-file-thumb {
  width: 24px;
  height: 24px;
  min-width: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
  box-shadow: 0 0 10px rgba(255, 0, 204, 0.12);
}

.selected-file-name {
  flex: 1;
  min-width: 0;
  color: white;
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.05;
  word-break: break-word;
}

.selected-file-name strong {
  color: var(--gold);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 14px;
}

.file-controls {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.file-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 9px;
  cursor: pointer;
  font-weight: bold;
  background: rgba(0, 240, 255, 0.055);
  color: white;
  box-shadow:
    0 0 8px rgba(0, 240, 255, 0.08),
    inset 0 0 8px rgba(255, 0, 204, 0.035);
}

.file-controls button:hover {
  background: var(--blue);
  color: black;
}

.remove-file-btn:hover {
  background: #ff4444 !important;
  border-color: #ff4444 !important;
  color: white !important;
}

@media (max-width: 800px) {
  .photo-upload-box {
    padding: 14px;
  }

  .selected-file-item {
    align-items: flex-start;
    gap: 10px;
  }

  .selected-file-thumb {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .selected-file-name {
    font-size: 18px;
  }

  .file-controls {
    flex-direction: column;
  }

  .file-controls button {
    width: 32px;
    height: 30px;
  }
}


/* Mobile polish: Post Area / Choose Your Area */

.post-flow-mobile-box {
  overflow: hidden;
}

.post-flow-instruction {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.post-flow-change-city {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .post-area-container {
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }

  .post-area-box {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .post-area-box .back-btn {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .post-area-box h1 {
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
  }

  .post-area-box .eyebrow {
    font-size: 21px;
    text-align: center;
    margin-bottom: 8px;
  }

  .post-area-box h2 {
    font-size: 23px;
    line-height: 1.05;
    text-align: center;
    margin-bottom: 10px;
  }

  .post-flow-instruction {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 18px !important;
  }

  .area-form {
    gap: 10px;
  }

  .area-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .area-option {
    align-items: center;
    min-height: 44px;
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 20px;
    line-height: 1.03;
  }

  .area-option input {
    min-width: 16px;
    margin-top: 0;
  }

  .area-option span {
    display: block;
    width: 100%;
  }

  .area-option:has(input:checked) {
    border-color: rgba(255, 204, 51, 0.72);
    background:
      radial-gradient(circle at top left, rgba(255, 204, 51, 0.12), transparent 42%),
      rgba(0, 240, 255, 0.045);
    box-shadow:
      0 0 12px rgba(255, 204, 51, 0.18),
      inset 0 0 10px rgba(255, 0, 204, 0.05);
  }

  .post-flow-change-city {
    margin-top: 14px;
  }

  label[for="changeCity"] {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
  }

  #changeCity {
    font-size: 15px;
    padding: 10px;
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .post-area-box h1 {
    font-size: 20px;
  }

  .post-area-box h2 {
    font-size: 21px;
  }

  .area-option {
    font-size: 19px;
    padding: 9px 9px;
  }
}


/* Mobile polish: Posting Type page */

.post-type-container {
  max-width: 980px;
}

.post-type-box h1 {
  font-family: "Orbitron", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 2px;
  text-align: center;
}

.post-type-box .eyebrow {
  color: var(--gold);
  font-family: "Lobster Two", cursive;
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.45),
    0 0 14px rgba(255, 0, 204, 0.18);
}

.post-type-box h2 {
  font-family: "Orbitron", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-type-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.post-type-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  background: rgba(0, 240, 255, 0.035);
  border: 1px solid rgba(0, 240, 255, 0.16);
  border-radius: 12px;
  color: var(--text);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.04;
  cursor: pointer;
  transition: 0.2s ease;
}

.post-type-option:hover {
  border-color: rgba(0, 240, 255, 0.48);
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.14),
    inset 0 0 12px rgba(255, 0, 204, 0.05);
  transform: translateY(-1px);
}

.post-type-option input {
  width: auto;
  min-width: 15px;
  accent-color: var(--blue);
}

.post-type-option:has(input:checked) {
  border-color: rgba(255, 204, 51, 0.72);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.12), transparent 42%),
    rgba(0, 240, 255, 0.045);
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.18),
    inset 0 0 10px rgba(255, 0, 204, 0.05);
}

@media (max-width: 800px) {
  .post-type-container {
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }

  .post-type-box {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .post-type-box .back-btn {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .post-type-box h1 {
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .post-type-box .eyebrow {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .post-type-box h2 {
    font-size: 23px;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .post-type-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .post-type-option {
    min-height: 44px;
    padding: 10px;
    border-radius: 12px;
    font-size: 20px;
  }

  .post-type-option input {
    min-width: 16px;
  }
}

@media (max-width: 420px) {
  .post-type-box h1 {
    font-size: 20px;
  }

  .post-type-box h2 {
    font-size: 21px;
  }

  .post-type-option {
    font-size: 19px;
    padding: 9px;
  }
}


/* Mobile polish: Job Category page */

.job-category-price {
  text-align: center;
}

.job-category-fallback-btn {
  display: none;
}

.job-category-option:has(input:checked) {
  border-color: rgba(255, 204, 51, 0.72);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.12), transparent 42%),
    rgba(0, 240, 255, 0.045);
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.18),
    inset 0 0 10px rgba(255, 0, 204, 0.05);
}

@media (max-width: 800px) {
  .job-category-container {
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }

  .job-category-box {
    padding: 18px 12px;
    border-radius: 14px;
    overflow: hidden;
  }

  .job-category-box .back-btn {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .job-category-box h1 {
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .job-category-box .eyebrow {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .job-category-box h2 {
    font-size: 23px;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .job-category-price {
    font-size: 22px;
    line-height: 1.05;
    padding: 7px 14px;
    margin-bottom: 16px !important;
  }

  .job-category-form {
    gap: 10px;
  }

  .job-category-options {
    columns: 1;
    column-gap: 0;
    margin-top: 0;
  }

  .job-category-option {
    min-height: 44px;
    align-items: center;
    font-size: 20px;
    line-height: 1.03;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 12px;
  }

  .job-category-option input {
    min-width: 16px;
  }

  .job-category-option span {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .job-category-box h1 {
    font-size: 20px;
  }

  .job-category-box h2 {
    font-size: 21px;
  }

  .job-category-price {
    font-size: 20px;
  }

  .job-category-option {
    font-size: 19px;
    padding: 9px;
  }
}


/* Mobile polish: Subcategory listings page */

@media (max-width: 800px) {
  .subcategory-header {
    padding: 14px 12px;
    gap: 12px;
  }

  .subcategory-header .brand-link {
    font-size: 21px;
    line-height: 1.05;
  }

  .subcategory-header .eagle-icon {
    font-size: 34px;
    margin-right: 5px;
  }

  .subcategory-header .post-btn {
    padding: 8px 13px;
    font-size: 14px;
    width: fit-content;
  }

  .subcategory-mobile-container {
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }

  .list-hero-card {
    padding: 20px 12px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .list-eyebrow {
    font-size: 21px;
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .list-hero-card h1 {
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .list-count {
    font-size: 20px;
    padding: 6px 14px;
  }

  .list-count span {
    font-size: 19px;
  }

  .subcategory-mobile-list {
    gap: 0;
  }

  .classified-row-link {
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
  }

  .classified-row-link:hover {
    transform: none;
  }

  .classified-thumb,
  .classified-thumb img,
  .moon-thumb {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 9px;
  }

  .moon-thumb {
    font-size: 27px;
  }

  .classified-location {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .classified-title {
    font-size: 18px;
    line-height: 1.08;
    margin-bottom: 4px;
  }

  .classified-meta {
    font-size: 12px;
    line-height: 1.25;
  }

  .subcategory-empty-mobile {
    padding: 20px 14px;
    text-align: center;
  }

  .subcategory-empty-mobile h3 {
    font-family: "Orbitron", Arial, sans-serif;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .subcategory-empty-mobile p {
    color: var(--muted);
    margin-bottom: 12px;
  }

  .subcategory-empty-mobile .post-btn {
    width: fit-content;
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .list-hero-card h1 {
    font-size: 23px;
  }

  .classified-thumb,
  .classified-thumb img,
  .moon-thumb {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }
}


/* Mobile polish: Ad Details page */

.ad-detail-divider {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 28px 0;
}

@media (max-width: 800px) {
  .ad-details-mobile-header {
    padding: 14px 12px;
    gap: 12px;
  }

  .ad-details-mobile-header .posting-brand {
    justify-content: center;
  }

  .ad-details-mobile-header .posting-brand img {
    width: 46px;
    height: 46px;
  }

  .ad-details-mobile-header .brand-link {
    font-size: 21px;
    line-height: 1.05;
  }

  .ad-details-mobile-header .post-btn {
    width: fit-content;
    padding: 8px 13px;
    font-size: 14px;
  }

  .ad-details-mobile-container {
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }

  .ad-details-mobile-box {
    padding: 18px 12px;
    border-radius: 14px;
    overflow: hidden;
  }

  .ad-top-row {
    align-items: stretch;
    gap: 10px;
  }

  .ad-top-row .post-btn,
  .ad-top-row .map-btn {
    width: 100%;
    text-align: center;
    padding: 9px 10px;
    font-size: 14px;
  }

  .ad-details-mobile-box > h2 {
    font-size: 26px;
    line-height: 1.08;
    text-align: center;
    margin-top: 4px;
  }

  .ad-info-mobile-stack {
    padding: 14px;
    margin: 16px 0;
    border-radius: 13px;
  }

  .ad-info-mobile-stack p {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 9px;
  }

  .ad-featured-mobile-wrap {
    margin: 20px 0 14px;
  }

  .featured-image {
    height: 245px;
    border-radius: 18px;
  }

  .ad-thumbnail-mobile-grid {
    gap: 8px;
    margin: 14px 0 22px;
  }

  .ad-thumbnail-button {
    width: 82px;
    height: 68px;
    border-radius: 11px;
  }

  .ad-message-mobile-box {
    padding: 16px 14px;
    border-radius: 13px;
    margin-top: 18px;
  }

  .ad-description-title {
    font-size: 24px;
    line-height: 1.08;
    text-align: center;
    margin-bottom: 12px;
  }

  .ad-message-mobile-box p {
    font-size: 15px;
    line-height: 1.55;
  }

  .ad-detail-divider {
    margin: 22px 0;
  }

  .reply-mobile-section {
    margin-top: 22px;
  }

  .reply-mobile-section h3 {
    font-size: 22px;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .reply-mobile-section textarea {
    min-height: 130px;
    font-size: 15px;
  }

  .reply-btn {
    width: 140px;
    padding: 8px 12px;
  }

  .lightbox-overlay {
    padding: 12px;
  }

  .lightbox-content {
    width: 100%;
    gap: 8px;
  }

  .lightbox-image-wrap img {
    max-height: 72vh;
    border-radius: 16px;
  }

  .lightbox-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 26px;
  }

  .lightbox-close,
  .map-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .map-overlay {
    padding: 12px;
  }

  .map-box {
    padding: 14px;
    border-radius: 15px;
  }

  .map-box h3 {
    text-align: center;
  }

  .map-box iframe {
    height: 330px;
  }
}

@media (max-width: 420px) {
  .ad-details-mobile-box > h2 {
    font-size: 23px;
  }

  .featured-image {
    height: 220px;
  }

  .ad-thumbnail-button {
    width: 74px;
    height: 62px;
  }

  .ad-description-title {
    font-size: 22px;
  }

  .lightbox-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 24px;
  }
}


/* Wheels, Wings N' Boats LP section */

.vehicles-section {
  max-width: 1180px;
}

.home-links.home-link-list.vehicles-links {
  columns: 4 190px;
  column-gap: 14px;
}

.vehicles-section h2::before {
  content: "🚗 ";
}

.vehicles-section h2::after {
  content: " ✈️ 🚤";
}

.home-links.home-link-list a.vehicles-cars-subcat {
  color: #fff4fb;
  border-color: rgba(255, 0, 204, 0.55);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.16), transparent 38%),
    rgba(255, 0, 204, 0.05);
  box-shadow:
    0 0 12px rgba(255, 0, 204, 0.22),
    inset 0 0 12px rgba(255, 0, 204, 0.07);
}

.home-links.home-link-list a.vehicles-moto-subcat {
  color: #f1fff5;
  border-color: rgba(88, 255, 122, 0.55);
  background:
    radial-gradient(circle at top left, rgba(88, 255, 122, 0.16), transparent 38%),
    rgba(88, 255, 122, 0.045);
  box-shadow:
    0 0 12px rgba(88, 255, 122, 0.22),
    inset 0 0 12px rgba(88, 255, 122, 0.06);
}

.home-links.home-link-list a.vehicles-rv-subcat {
  color: #fff8dc;
  border-color: rgba(255, 204, 51, 0.6);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.17), transparent 38%),
    rgba(255, 204, 51, 0.05);
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.22),
    inset 0 0 12px rgba(255, 204, 51, 0.06);
}

@media (min-width: 801px) {
  .vehicles-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-links.home-link-list.vehicles-links a {
    font-size: 18px;
    padding: 7px 9px;
  }
}

@media (max-width: 800px) {
  .home-links.home-link-list.vehicles-links {
    columns: 1;
  }
}


/* ===========================
   Payment Success Launch Page
=========================== */

.payment-success-box {
  max-width: 720px;
  margin: 80px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-eagle {
  font-size: 92px;
  margin-bottom: 18px;
  text-shadow:
    0 0 15px var(--gold),
    0 0 30px var(--pink),
    0 0 45px var(--blue);
}

.payment-success-box .eyebrow {
  color: var(--gold);
  font-family: "Lobster Two", cursive;
  font-size: 26px;
  margin-bottom: 10px;
}

.payment-success-box h1 {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  margin-bottom: 18px;
  text-shadow:
    0 0 10px var(--pink),
    0 0 20px var(--purple),
    0 0 30px rgba(0, 240, 255, 0.25);
}

.success-spinner {
  width: 92px;
  height: 92px;
  margin: 26px auto;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.13);
  border-top: 6px solid var(--blue);
  border-right: 6px solid var(--pink);
  animation: publishSpin 0.85s linear infinite;
  box-shadow:
    0 0 22px rgba(0, 240, 255, 0.45),
    0 0 30px rgba(255, 0, 204, 0.18);
}

@keyframes publishSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.success-message {
  color: #e8e8e8;
  font-size: 22px;
  margin-top: 22px;
}

.success-checklist {
  max-width: 420px;
  margin: 24px auto 28px;
  text-align: left;
}

.success-check {
  color: var(--green);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(88, 255, 122, 0.3);
}

.success-redirect {
  color: var(--gold);
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: 18px;
}

.success-manual-link {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .payment-success-box {
    margin: 36px auto;
    padding: 24px 18px;
  }

  .success-eagle {
    font-size: 72px;
  }

  .payment-success-box h1 {
    font-size: 26px;
  }

  .success-message {
    font-size: 19px;
  }

  .success-check {
    font-size: 21px;
  }
}

/* ===========================
   Payment Cancel Page
=========================== */

.payment-cancel-box {
  max-width: 720px;
  margin: 80px auto;
  text-align: center;
}

.cancel-eagle {
  font-size: 86px;
  margin-bottom: 18px;
  opacity: 0.9;
  text-shadow:
    0 0 12px var(--gold),
    0 0 24px var(--purple),
    0 0 35px rgba(255, 0, 204, 0.35);
}

.payment-cancel-box .eyebrow {
  color: var(--gold);
  font-family: "Lobster Two", cursive;
  font-size: 26px;
  margin-bottom: 10px;
}

.payment-cancel-box h1 {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  margin-bottom: 20px;
  text-shadow:
    0 0 10px var(--pink),
    0 0 20px var(--purple);
}

.cancel-message {
  color: #e8e8e8;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.cancel-note {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.cancel-main-link {
  display: inline-block;
  margin-bottom: 20px;
}

.cancel-home-link {
  display: block;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
}

.cancel-home-link:hover {
  color: var(--blue);
}

@media (max-width: 800px) {
  .payment-cancel-box {
    margin: 36px auto;
    padding: 24px 18px;
  }

  .cancel-eagle {
    font-size: 68px;
  }

  .payment-cancel-box h1 {
    font-size: 26px;
  }

  .cancel-message {
    font-size: 19px;
  }
}


/* =====================================================
   Featured Subcategory Card System
   Used by Landing Page + Post Category selection cards
===================================================== */

.home-links.home-link-list a.money-subcat,
.job-category-option.money-subcat {
  position: relative;
  color: white !important;
  font-family: "Agdasima", Arial, sans-serif !important;
  font-weight: 700 !important;
  border-width: 2px !important;
  transform: translateZ(0);
}

.job-category-option.money-subcat {
  font-size: 22px !important;
}

.job-category-option.money-subcat span {
  font-family: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
}

.home-links.home-link-list a.money-subcat:hover,
.job-category-option.money-subcat:hover {
  transform: translateY(-2px);
}

.home-links.home-link-list a.rest-bars-subcat,
.job-category-option.rest-bars-subcat,
.home-links.home-link-list a.vehicles-cars-subcat,
.job-category-option.vehicles-cars-subcat,
.home-links.home-link-list a.isaw-subcat,
.job-category-option.isaw-subcat {
  color: #fff4fb !important;
  border-color: rgba(255, 0, 204, 0.62) !important;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.18), transparent 38%),
    rgba(255, 0, 204, 0.055) !important;
  box-shadow:
    0 0 12px rgba(255, 0, 204, 0.24),
    inset 0 0 12px rgba(255, 0, 204, 0.08) !important;
}

.home-links.home-link-list a.labor-subcat,
.job-category-option.labor-subcat,
.home-links.home-link-list a.vehicles-moto-subcat,
.job-category-option.vehicles-moto-subcat {
  color: #f1fff5 !important;
  border-color: rgba(88, 255, 122, 0.6) !important;
  background:
    radial-gradient(circle at top left, rgba(88, 255, 122, 0.18), transparent 38%),
    rgba(88, 255, 122, 0.05) !important;
  box-shadow:
    0 0 12px rgba(88, 255, 122, 0.22),
    inset 0 0 12px rgba(88, 255, 122, 0.06) !important;
}

.home-links.home-link-list a.skilled-subcat,
.job-category-option.skilled-subcat,
.home-links.home-link-list a.vehicles-rv-subcat,
.job-category-option.vehicles-rv-subcat,
.home-links.home-link-list a.musicians-subcat,
.job-category-option.musicians-subcat {
  color: #fff8dc !important;
  border-color: rgba(255, 204, 51, 0.68) !important;
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.18), transparent 38%),
    rgba(255, 204, 51, 0.055) !important;
  box-shadow:
    0 0 12px rgba(255, 204, 51, 0.22),
    inset 0 0 12px rgba(255, 204, 51, 0.06) !important;
}

.home-links.home-link-list a.office-subcat,
.job-category-option.office-subcat {
  color: #eef7ff !important;
  border-color: rgba(0, 240, 255, 0.65) !important;
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.18), transparent 38%),
    rgba(0, 240, 255, 0.055) !important;
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.24),
    inset 0 0 12px rgba(0, 240, 255, 0.08) !important;
}

.home-links.home-link-list a.money-subcat::after,
.job-category-option.money-subcat span::after {
  content: " ★";
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.85),
    0 0 16px rgba(255, 0, 204, 0.35);
}

/* Paystation spacing polish */

.paystation-box .posting-price {
  margin: 22px auto 30px auto !important;
}

.paystation-box .created-ad-preview {
  margin: 26px 0 34px 0;
}

.paystation-box .created-ad-preview p {
  margin-bottom: 12px;
  line-height: 1.45;
}

.paystation-box .created-ad-preview h3 {
  margin-bottom: 18px;
}

.paystation-box .checkout-btn {
  margin-top: 14px;
}

/* =========================================================
   Landing Page Polish — Compact desktop + mobile menu
========================================================= */

.mobile-menu-toggle,
.mobile-entertainment-prompt,
.mobile-entertainment-menu {
  display: none;
}

.category-label-main,
.category-label-detail {
  display: block;
}

.category-label-detail {
  margin-top: 3px;
  font-size: 0.7em;
  line-height: 1.1;
  letter-spacing: 0.4px;
}

.category-label-line {
  display: block;
}

.home-nav-actions {
  position: absolute;
  top: 2px;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 205px;
  gap: 7px;
}

.home-nav-actions .post-btn {
  position: static;
  width: 100%;
  padding: 8px 12px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}

.home-profile-btn {
  color: #ff8aea;
  border-color: #ff3bdb;
  box-shadow: 0 0 11px rgba(255, 59, 219, 0.24);
}

.home-profile-btn:hover {
  color: #050505;
  background: #ff3bdb;
}

@media (min-width: 801px) {
  .hero {
    min-height: 445px;
    padding: 16px 24px 20px;
  }

  .home-navbar {
    max-width: 1370px;
    min-height: 88px;
    margin: 0 auto;
    padding: 0 230px 4px;
  }

  .brand-emblem {
    gap: 12px;
  }

  .brand-emblem img {
    width: 82px;
    height: 82px;
  }

  .site-logo {
    font-size: 38px;
  }

  .hero-layout {
    grid-template-columns: minmax(235px, 285px) minmax(300px, 1fr) minmax(235px, 285px);
    gap: 22px;
    max-width: 1370px;
    margin: 0 auto;
    padding-top: 7px;
  }

  .hero-left-panel,
  .hero-right-panel {
    gap: 11px;
  }

  .hero-content {
    padding-top: 48px;
  }

  .hero-city {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .hero-tagline {
    margin-bottom: 10px;
    font-size: 36px;
  }

  .hero-description {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.3;
  }

  .quick-links {
    gap: 6px;
  }

  .quick-links a {
    padding: 8px 9px;
    border-radius: 8px;
    font-size: 17px;
  }

  .video-card h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .video-box {
    border-radius: 9px;
  }

  .social-box p {
    margin-bottom: 5px;
    font-size: 19px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .desktop-home-cats {
    display: block;
    columns: auto;
    max-width: 1370px;
    margin: 22px auto 28px;
    padding: 0 16px;
  }

  .desktop-entertainment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 15px;
  }

  .desktop-entertainment-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .desktop-home-cats .home-section {
    display: block;
    break-inside: avoid;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 13px;
    transform: none;
  }

  .desktop-home-cats .home-section h2 {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: 1px;
  }

  .desktop-home-cats .home-links.home-link-list,
  .desktop-home-cats .home-links.home-link-list.three-rows,
  .desktop-home-cats .home-links.home-link-list.vehicles-links {
    columns: 2 135px;
    column-gap: 7px;
  }

  .desktop-home-cats .home-links.home-link-list a,
  .desktop-home-cats .home-links.home-link-list.vehicles-links a {
    width: 100%;
    min-width: 0;
    margin: 0 0 5px;
    padding: 5px 6px;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1.05;
    text-align: left;
  }

  .desktop-home-cats .home-links.home-link-list a.money-subcat {
    min-width: 0;
    padding: 6px;
  }

  .desktop-home-cats .friends-love-section .home-links.home-link-list,
  .desktop-home-cats #home-category-resumes .home-links.home-link-list {
    columns: 1;
  }

  .desktop-home-cats .friends-love-section .home-links.home-link-list a,
  .desktop-home-cats #home-category-resumes .home-links.home-link-list a {
    text-align: center;
  }

  footer {
    margin-top: 24px;
    padding: 22px;
  }
}

.ke-home-footer {
  position: relative;
  background: #020202;
  color: #ffcc33;
  border-top: 0;
  text-align: center;
  line-height: 1.45;
  text-shadow:
    0 0 8px rgba(255, 204, 51, 0.82),
    0 0 18px rgba(255, 204, 51, 0.46),
    0 0 30px rgba(255, 204, 51, 0.22),
    0 0 14px rgba(255, 0, 204, 0.25);
}

.ke-home-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ff42d0 20%,
    #9f54ff 46%,
    #00f0ff 76%,
    transparent 100%
  );
  box-shadow:
    0 0 5px rgba(255, 66, 208, 0.32),
    0 0 9px rgba(0, 240, 255, 0.2);
  pointer-events: none;
}

.ke-home-footer p {
  margin: 0 0 18px;
}

.ke-home-footer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .ke-home-footer {
    background: #020202;
    color: #ffcc33;
    line-height: 1.45;
  }

  .ke-home-footer p {
    margin-bottom: 16px;
  }
}

/* ==========================================================
   v81 — FRIENDS N' LOVE CONNECTION GATEWAYS
========================================================== */

.fnl-gateway-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 50% -15%, rgba(239, 18, 145, 0.28), transparent 42%),
    radial-gradient(circle at 10% 58%, rgba(0, 235, 255, 0.10), transparent 30%),
    #040305;
}

.fnl-gateway-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 100, 205, 0.45);
  background: rgba(3, 2, 5, 0.92);
  box-shadow: 0 8px 34px rgba(239, 18, 145, 0.18);
}

.fnl-gateway-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  text-decoration: none;
  text-shadow: 0 0 7px #fff, 0 0 16px #ef1291;
}

.fnl-gateway-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 235, 255, 0.5));
}

.fnl-gateway-post {
  padding: 12px 20px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #ff53c7;
  border-radius: 999px;
  background: linear-gradient(180deg, #39102f, #120510);
  box-shadow: 0 0 8px #ef1291, inset 0 0 12px rgba(255, 83, 199, 0.26);
}

.fnl-gateway-shell {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.fnl-gateway-intro {
  position: relative;
  max-width: 860px;
  margin: 0 auto 38px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 92, 200, 0.6);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 32, 169, 0.10), transparent 45%),
    rgba(11, 6, 12, 0.92);
  box-shadow: 0 0 18px rgba(239, 18, 145, 0.28), inset 0 0 35px rgba(255, 255, 255, 0.025);
}

.fnl-gateway-eyebrow {
  margin: 0 0 8px;
  color: #ffcf40;
  font-family: "Patrick Hand SC", cursive;
  font-size: clamp(18px, 2.5vw, 25px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 180, 0, 0.7);
}

.fnl-gateway-intro h1 {
  margin: 0;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(38px, 8vw, 82px);
  line-height: 1;
  text-shadow: 0 0 5px #fff, 0 0 15px #ef1291, 0 0 34px #ef1291;
}

.fnl-gateway-city {
  margin: 16px 0 20px;
  color: #ffdb64;
  font-family: "Lobster Two", cursive;
  font-size: clamp(22px, 4vw, 34px);
}

.fnl-gateway-city span {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.fnl-gateway-message {
  max-width: 720px;
  margin: 0 auto;
  color: #f5ddea;
  font-family: "Patrick Hand SC", cursive;
  font-size: clamp(19px, 2.6vw, 25px);
  line-height: 1.42;
}

.fnl-connection-board {
  padding: clamp(18px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 26px;
  background: rgba(8, 7, 10, 0.94);
  box-shadow: 0 0 24px rgba(239, 18, 145, 0.24);
}

.fnl-board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.fnl-board-heading p {
  margin: 0;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  text-shadow: 0 0 9px #ef1291;
}

.fnl-board-heading a {
  color: #62f5ff;
  font-family: "Agdasima", sans-serif;
  font-size: 20px;
}

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

.fnl-connection-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 105px;
  padding: 14px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 80, 195, 0.70);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 72, 190, 0.18), transparent 58%),
    #0b080c;
  box-shadow: 0 0 7px rgba(239, 18, 145, 0.42), inset 0 0 15px rgba(255, 255, 255, 0.025);
  font-family: "Agdasima", sans-serif;
  font-size: 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.fnl-connection-card:hover,
.fnl-connection-card:focus-visible {
  color: #fff;
  border-color: #63f6ff;
  box-shadow: 0 0 15px #ef1291, 0 0 24px rgba(0, 235, 255, 0.38);
  transform: translateY(-3px);
}

.fnl-connection-code {
  margin-bottom: 5px;
  color: #ffdc67;
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255, 190, 0, 0.65);
}

.fnl-gateway-footer {
  padding: 28px 16px 38px;
  color: #ffcf40;
  text-align: center;
  border-top: 1px solid rgba(239, 18, 145, 0.45);
  background: #020202;
  font-family: "Patrick Hand SC", cursive;
  font-size: 18px;
}

.fnl-gateway-footer p {
  margin: 4px 0;
}

/* Rock N' Roll: a neon, after-dark stage rather than a generic FNL room. */
.fnl-rnr-page {
  background:
    linear-gradient(90deg, rgba(67, 0, 24, 0.72), transparent 16%, transparent 84%, rgba(67, 0, 24, 0.72)),
    radial-gradient(ellipse at 50% 18%, rgba(255, 28, 147, 0.36), transparent 42%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.018) 0 2px, transparent 2px 12px),
    #030104;
}

.fnl-rnr-page .fnl-gateway-intro {
  overflow: hidden;
  border-color: #ff3baf;
  background:
    linear-gradient(90deg, rgba(119, 0, 42, 0.42), transparent 18%, transparent 82%, rgba(119, 0, 42, 0.42)),
    #080307;
  box-shadow: 0 0 18px #ef1291, 0 0 48px rgba(170, 0, 86, 0.34), inset 0 0 34px rgba(255, 27, 154, 0.12);
}

.fnl-rnr-page .fnl-gateway-intro h1 {
  font-family: "Lobster Two", cursive;
  font-style: italic;
  font-size: clamp(52px, 10vw, 100px);
  transform: rotate(-2deg);
}

.rnr-stage-lights {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.rnr-stage-lights span {
  width: 24%;
  height: 430px;
  background: linear-gradient(180deg, rgba(255, 33, 155, 0.30), transparent 78%);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  filter: blur(7px);
  opacity: 0.48;
}

.rnr-stage-lights span:nth-child(2) {
  background: linear-gradient(180deg, rgba(44, 232, 255, 0.28), transparent 78%);
}

.rnr-devil-girls {
  position: absolute;
  z-index: 4;
  top: 80px;
  left: 50%;
  width: min(1180px, calc(100vw - 32px));
  pointer-events: none;
  transform: translateX(-50%);
}

.rnr-devil-girls::before,
.rnr-devil-girls::after {
  position: absolute;
  z-index: -1;
  top: -80px;
  width: clamp(190px, 20vw, 285px);
  height: 470px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 44, 165, 0.20) 20%,
      rgba(255, 28, 112, 0.09) 58%,
      transparent 90%
    );
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
  filter: blur(8px);
  opacity: 0.72;
}

.rnr-devil-girls::before {
  left: -22px;
  transform: rotate(4deg);
  transform-origin: top center;
}

.rnr-devil-girls::after {
  right: -22px;
  transform: rotate(-4deg);
  transform-origin: top center;
}

.rnr-devil-girl {
  position: absolute;
  z-index: 2;
  top: 0;
  width: clamp(245px, 24vw, 340px);
  height: auto;
  opacity: 0.94;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 10px rgba(255, 30, 95, 0.94))
    drop-shadow(0 0 22px rgba(239, 18, 145, 0.68));
}

.rnr-devil-girl-left {
  left: -8px;
  transform: scaleX(-1);
  transform-origin: center;
}

.rnr-devil-girl-right {
  right: -8px;
}

.fnl-rnr-page .fnl-gateway-intro,
.fnl-rnr-page .fnl-connection-board {
  position: relative;
  z-index: 3;
}

.rnr-house-rules {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.rnr-house-rules span {
  padding: 7px 12px;
  color: #ffd7ec;
  border: 1px solid rgba(255, 58, 173, 0.58);
  border-radius: 999px;
  background: rgba(30, 3, 18, 0.78);
  font-family: "Agdasima", sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.fnl-rnr-page .fnl-connection-board {
  border-color: rgba(255, 51, 168, 0.55);
  background:
    linear-gradient(90deg, rgba(69, 0, 32, 0.18), transparent 18%, transparent 82%, rgba(69, 0, 32, 0.18)),
    rgba(5, 2, 5, 0.96);
  box-shadow: 0 0 22px rgba(255, 27, 154, 0.36), inset 0 0 42px rgba(255, 30, 148, 0.05);
}

.fnl-rnr-page .fnl-connection-card {
  border-color: rgba(255, 65, 179, 0.88);
  background:
    linear-gradient(145deg, rgba(86, 0, 40, 0.48), transparent 55%),
    #080307;
  box-shadow: 0 0 9px rgba(255, 28, 154, 0.66), inset 0 0 18px rgba(255, 54, 170, 0.08);
}

.rnr-mobile-devil-stage {
  display: none;
}

@media (max-width: 760px) {
  .fnl-gateway-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px 16px;
  }

  .fnl-gateway-brand {
    justify-content: center;
    font-size: 22px;
  }

  .fnl-gateway-brand img {
    width: 52px;
    height: 52px;
  }

  .fnl-gateway-post {
    text-align: center;
  }

  .fnl-gateway-shell {
    width: min(100% - 20px, 1180px);
    padding: 30px 0 46px;
  }

  .fnl-gateway-intro {
    margin-bottom: 20px;
    padding: 25px 17px;
    border-radius: 19px;
  }

  .fnl-connection-board {
    padding: 15px;
    border-radius: 19px;
  }

  .fnl-board-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .fnl-connection-card {
    min-height: 92px;
    padding: 11px 6px;
    font-size: 17px;
  }

  .fnl-connection-code {
    font-size: 19px;
  }

  .rnr-devil-girls {
    display: none;
  }

  .rnr-mobile-devil-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    height: 235px;
    margin: 8px auto 0;
    overflow: visible;
  }

  .rnr-mobile-devil-slot {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
  }

  .rnr-mobile-devil-slot::before {
    position: absolute;
    z-index: 0;
    top: -10px;
    left: 50%;
    width: 185px;
    height: 235px;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.30),
        rgba(255, 46, 166, 0.20) 34%,
        rgba(255, 24, 111, 0.08) 66%,
        transparent 94%
      );
    clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
    filter: blur(6px);
    transform: translateX(-50%);
  }

  .rnr-mobile-devil-slot img {
    position: relative;
    z-index: 1;
    width: 185px;
    height: auto;
    opacity: 0.96;
    filter:
      drop-shadow(0 0 2px rgba(255, 255, 255, 0.75))
      drop-shadow(0 0 7px rgba(255, 35, 94, 0.95))
      drop-shadow(0 0 14px rgba(239, 18, 145, 0.72));
  }

  .rnr-mobile-devil-slot-left img {
    transform: scaleX(-1);
  }
}

/* ==========================================================
   v88 — FRIENDS N' LOVE LISTING ROOMS
========================================================== */

.fnl-listing-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 18, 145, 0.20), transparent 38%),
    linear-gradient(90deg, rgba(75, 0, 34, 0.22), transparent 22%, transparent 78%, rgba(75, 0, 34, 0.22)),
    #050305;
}

.fnl-listing-page .subcategory-header {
  border-bottom-color: rgba(255, 70, 178, 0.58);
  background:
    linear-gradient(90deg, rgba(67, 0, 31, 0.48), transparent 36%),
    #050305;
  box-shadow: 0 6px 22px rgba(239, 18, 145, 0.20);
}

.fnl-listing-page .subcategory-nav-strip {
  border-color: rgba(255, 61, 170, 0.42);
  background:
    linear-gradient(90deg, rgba(80, 0, 40, 0.34), transparent 50%, rgba(80, 0, 40, 0.34)),
    #080407;
  box-shadow: 0 0 17px rgba(239, 18, 145, 0.20);
}

.fnl-listing-page .subcategory-nav-btn {
  border-color: rgba(255, 77, 184, 0.74);
  background: linear-gradient(180deg, rgba(58, 8, 40, 0.94), rgba(16, 4, 13, 0.98));
  box-shadow: 0 0 8px rgba(239, 18, 145, 0.46), inset 0 0 13px rgba(255, 72, 183, 0.10);
}

.fnl-listing-page .subcategory-v2-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 31, 153, 0.09), transparent 35%),
    transparent;
}

.fnl-listing-page .subcategory-v2-shell {
  position: relative;
  z-index: 2;
}

.fnl-listing-page .subcategory-sidebar,
.fnl-listing-page .subcategory-results-panel {
  border-color: rgba(255, 72, 180, 0.48);
  background:
    linear-gradient(145deg, rgba(70, 0, 38, 0.11), transparent 45%),
    rgba(8, 5, 8, 0.96);
  box-shadow:
    0 0 14px rgba(239, 18, 145, 0.24),
    inset 0 0 22px rgba(255, 74, 181, 0.035);
}

.fnl-listing-page .sidebar-title,
.fnl-listing-page .subcategory-title-block h1 {
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 13px #ef1291, 0 0 24px rgba(239, 18, 145, 0.55);
}

.fnl-listing-page .sidebar-subtitle,
.fnl-listing-page .list-eyebrow,
.fnl-listing-page .hud-live {
  color: #ffccdf;
  text-shadow: 0 0 8px rgba(239, 18, 145, 0.72);
}

.fnl-listing-page .subcategory-topbar,
.fnl-listing-page .filter-section,
.fnl-listing-page .related-subcategories-bar {
  border-color: rgba(255, 70, 178, 0.34);
  background:
    linear-gradient(90deg, rgba(76, 0, 40, 0.18), transparent 65%),
    rgba(8, 5, 8, 0.92);
}

.fnl-listing-page .listing-search-input,
.fnl-listing-page .listing-sort-select,
.fnl-listing-page .sidebar-filter-form input,
.fnl-listing-page .sidebar-filter-form select {
  border-color: rgba(255, 80, 185, 0.56);
  background-color: #080508;
  box-shadow: inset 0 0 10px rgba(239, 18, 145, 0.07);
}

.fnl-listing-page .listing-search-btn,
.fnl-listing-page .listing-filter-pill,
.fnl-listing-page .listing-view-btn,
.fnl-listing-page .mobile-filter-plus {
  color: #fff;
  border-color: rgba(255, 75, 182, 0.76);
  background: linear-gradient(180deg, #3a0b2d, #11040e);
  box-shadow: 0 0 7px rgba(239, 18, 145, 0.48), inset 0 0 10px rgba(255, 67, 177, 0.10);
}

.fnl-listing-page .listing-view-btn.active,
.fnl-listing-page .listing-filter-pill.active {
  color: #fff;
  border-color: #ff53c7;
  background: linear-gradient(180deg, #761552, #28071e);
  box-shadow: 0 0 12px #ef1291, inset 0 0 13px rgba(255, 255, 255, 0.08);
}

.fnl-listing-page .classified-row-link {
  border-color: rgba(255, 73, 180, 0.52);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 49, 164, 0.10), transparent 38%),
    #090609;
  box-shadow: 0 0 8px rgba(239, 18, 145, 0.25);
}

.fnl-listing-page .classified-row-link:hover,
.fnl-listing-page .classified-row-link:focus-visible {
  border-color: #ff59c9;
  box-shadow: 0 0 15px rgba(239, 18, 145, 0.70), 0 0 24px rgba(142, 0, 81, 0.32);
}

.fnl-listing-page .classified-title,
.fnl-listing-page .classified-location {
  color: #ffd7eb;
}

.fnl-listing-page .classified-meta,
.fnl-listing-page .classified-extra-meta {
  color: #e8b8d2;
}

.rnr-listing-page {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.014) 0 2px, transparent 2px 13px),
    radial-gradient(circle at 50% 0%, rgba(255, 20, 139, 0.27), transparent 42%),
    linear-gradient(90deg, rgba(91, 0, 36, 0.42), transparent 18%, transparent 82%, rgba(91, 0, 36, 0.42)),
    #030103;
}

.rnr-listing-page .subcategory-title-block h1 {
  font-family: "Lobster Two", cursive;
  font-style: italic;
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 15px #ef1291, 0 0 30px #ef1291;
}

.rnr-listing-devil-stage {
  position: absolute;
  z-index: 3;
  top: -55px;
  left: 54%;
  display: flex;
  justify-content: space-between;
  width: min(560px, 38vw);
  pointer-events: none;
  transform: translateX(-50%);
}

.rnr-listing-devil-slot {
  position: relative;
  width: clamp(210px, 14vw, 270px);
  height: 430px;
}

.rnr-listing-devil-slot::before {
  position: absolute;
  z-index: 0;
  top: -170px;
  left: 50%;
  width: 130%;
  height: 560px;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 38, 159, 0.18) 30%,
      rgba(255, 22, 105, 0.07) 68%,
      transparent 93%
    );
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
  filter: blur(8px);
  transform: translateX(-50%);
}

.rnr-listing-devil-slot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 10px rgba(255, 28, 92, 0.94))
    drop-shadow(0 0 20px rgba(239, 18, 145, 0.66));
}

.rnr-listing-devil-left img {
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .rnr-listing-devil-stage {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: min(100% - 24px, 560px);
    height: 190px;
    margin: 12px auto 4px;
    overflow: hidden;
    transform: none;
  }

  .rnr-listing-devil-slot {
    display: flex;
    justify-content: center;
    width: auto;
    height: 190px;
  }

  .rnr-listing-devil-slot::before {
    top: -20px;
    width: 180px;
    height: 220px;
    filter: blur(6px);
  }

  .rnr-listing-devil-slot img {
    width: 158px;
  }
}

/* v90 — paired FNL subcategory icons, shared by desktop and cloned mobile links */
.fnl-link-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52em;
  width: 100%;
}

.fnl-link-icon {
  display: inline-grid;
  place-items: center;
  min-width: 1.05em;
  font-family: Arial, sans-serif;
  font-size: 0.88em;
  font-style: normal;
  line-height: 1;
}

.fnl-icon-flower {
  filter: drop-shadow(0 0 5px rgba(255, 211, 46, 0.92));
}

.fnl-icon-heart {
  color: #ff304f;
  text-shadow: 0 0 5px #ff304f, 0 0 10px rgba(255, 20, 90, 0.75);
}

.fnl-icon-bolt {
  color: #00eaff;
  font-family: "Orbitron", sans-serif;
  font-size: 1.08em;
  font-weight: 800;
  text-shadow: 0 0 5px #00eaff, 0 0 11px rgba(0, 174, 255, 0.80);
  transform: skew(-8deg);
}

.fnl-icon-flame {
  filter: drop-shadow(0 0 5px rgba(255, 59, 30, 0.92));
}

@media (max-width: 800px) {
  .home-navbar {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: start;
    gap: 8px;
    padding: 0;
  }

  .brand-emblem {
    grid-column: 1;
    justify-content: center;
    min-height: 60px;
    padding: 0 0 0 42px;
  }

  .brand-emblem img:last-child {
    right: auto;
    left: 0;
    top: 2px;
    width: 54px;
    height: 54px;
  }

  .site-logo {
    font-size: 29px;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    margin-top: 5px;
    padding: 9px;
    color: var(--gold);
    background:
      radial-gradient(circle at 22% 15%, rgba(255, 255, 255, 0.12), transparent 24%),
      radial-gradient(circle at top left, rgba(255, 0, 204, 0.28), transparent 52%),
      linear-gradient(145deg, rgba(255, 204, 51, 0.09), rgba(0, 240, 255, 0.04)),
      rgba(5, 5, 5, 0.86);
    border: 1px solid rgba(255, 204, 51, 0.9);
    border-radius: 8px;
    box-shadow:
      0 0 3px rgba(255, 245, 197, 0.55),
      0 0 9px rgba(255, 204, 51, 0.46),
      0 0 17px rgba(255, 204, 51, 0.27),
      0 0 23px rgba(255, 0, 204, 0.12),
      inset 0 0 7px rgba(255, 255, 255, 0.08),
      inset 0 0 13px rgba(0, 240, 255, 0.1);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    box-shadow:
      0 0 6px rgba(255, 204, 51, 0.85),
      0 0 10px rgba(255, 0, 204, 0.35);
  }

  .home-nav-actions {
    position: static;
    grid-column: 1 / -1;
    width: min(100%, 280px);
    margin: 7px auto 0;
    gap: 6px;
  }

  .home-nav-actions .post-btn,
  .home-navbar .home-nav-actions .post-btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 11px;
    font-size: 12px;
    border-width: 1px;
    border-radius: 7px;
  }

  .hero {
    padding-top: 11px;
  }

  .mobile-entertainment-prompt {
    display: block;
    max-width: 520px;
    margin: 18px auto 24px;
    padding: 0 14px;
    text-align: center;
  }

  .mobile-entertainment-prompt p {
    margin-bottom: 8px;
    color: var(--gold);
    font-family: "Lobster Two", cursive;
    font-size: 22px;
    text-shadow: 0 0 9px rgba(255, 204, 51, 0.35);
  }

  .mobile-entertainment-prompt button {
    width: min(100%, 330px);
    padding: 11px 14px;
    color: white;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    background:
      linear-gradient(135deg, rgba(255, 0, 204, 0.12), rgba(0, 240, 255, 0.07)),
      #0c0c0c;
    border: 1px solid rgba(255, 204, 51, 0.65);
    border-radius: 10px;
    box-shadow:
      0 0 13px rgba(255, 204, 51, 0.15),
      inset 0 0 12px rgba(0, 240, 255, 0.05);
  }

  .prompt-menu-icon {
    margin-right: 7px;
    color: var(--blue);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-entertainment-menu {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: block;
    overflow-y: auto;
    padding: 18px 18px 34px;
    background:
      radial-gradient(circle at 85% 5%, rgba(255, 0, 204, 0.13), transparent 28%),
      radial-gradient(circle at 10% 100%, rgba(0, 240, 255, 0.08), transparent 30%),
      #030303;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.25s ease,
      opacity 0.2s ease,
      visibility 0.25s ease;
  }

  .mobile-entertainment-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-menu-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .mobile-menu-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter:
      drop-shadow(0 0 7px rgba(255, 0, 204, 0.45))
      drop-shadow(0 0 10px rgba(0, 240, 255, 0.22));
  }

  .mobile-menu-brand strong {
    display: flex;
    flex-direction: column;
    color: white;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 23px;
    line-height: 0.94;
    letter-spacing: 1px;
    text-shadow:
      0 0 8px var(--pink),
      0 0 16px var(--pink),
      0 0 25px var(--purple);
  }

  .mobile-menu-close {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    background:
      radial-gradient(circle, rgba(255, 0, 204, 0.08), transparent 65%);
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.16),
      0 0 15px rgba(255, 0, 204, 0.24),
      0 0 23px rgba(0, 240, 255, 0.12),
      inset 0 0 11px rgba(0, 240, 255, 0.07);
  }

  .mobile-menu-close::before,
  .mobile-menu-close::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 9px;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: white;
    box-shadow:
      0 0 6px rgba(255, 0, 204, 0.9),
      0 0 12px rgba(255, 0, 204, 0.55),
      0 0 18px rgba(0, 240, 255, 0.25);
  }

  .mobile-menu-close::before {
    transform: rotate(45deg);
  }

  .mobile-menu-close::after {
    transform: rotate(-45deg);
  }

  .mobile-menu-city {
    padding: 16px 0 4px;
    color: var(--gold);
    font-family: "Lobster Two", cursive;
    font-size: 21px;
    text-align: center;
  }

  .mobile-menu-city span,
  .mobile-menu-city strong {
    display: block;
  }

  .mobile-menu-city strong {
    margin-top: 3px;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .mobile-menu-instruction {
    margin: 11px 0 13px;
    color: var(--blue);
    font-family: "Agdasima", Arial, sans-serif;
    font-size: 21px;
    text-align: center;
    text-shadow:
      0 0 7px rgba(0, 240, 255, 0.65),
      0 0 13px rgba(0, 240, 255, 0.24);
  }

  .mobile-menu-category-list,
  .mobile-menu-subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
  }

  .mobile-menu-category-list button,
  .mobile-menu-subcategory-list a {
    display: block;
    width: 100%;
    padding: 15px 16px;
    color: white;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 27px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    background:
      linear-gradient(115deg, rgba(255, 0, 204, 0.13), transparent 47%),
      rgba(138, 43, 226, 0.045);
    border: 1px solid rgba(255, 0, 204, 0.5);
    border-radius: 12px;
    box-shadow:
      0 0 11px rgba(255, 0, 204, 0.15),
      inset 0 0 12px rgba(138, 43, 226, 0.06);
    text-shadow:
      0 0 8px var(--pink),
      0 0 15px var(--pink),
      0 0 23px var(--purple);
  }

  .mobile-menu-category-list button::after {
    content: none;
    display: none;
  }

  .mobile-menu-category-list button:nth-child(3n + 2) {
    color: white;
    border-color: rgba(30, 224, 218, 0.68);
    background:
      linear-gradient(115deg, rgba(30, 224, 218, 0.15), transparent 50%),
      rgba(0, 240, 255, 0.04);
    box-shadow:
      0 0 12px rgba(30, 224, 218, 0.2),
      inset 0 0 12px rgba(30, 224, 218, 0.055);
    text-shadow:
      0 0 7px rgba(30, 224, 218, 0.92),
      0 0 15px rgba(30, 224, 218, 0.58),
      0 0 23px rgba(0, 240, 255, 0.3);
  }

  .mobile-menu-category-list button:nth-child(3n + 2)::after {
    text-shadow:
      0 0 7px rgba(30, 224, 218, 0.92),
      0 0 15px rgba(30, 224, 218, 0.58),
      0 0 23px rgba(0, 240, 255, 0.3);
  }

  .mobile-menu-category-list button:nth-child(3n) {
    color: white;
    border-color: rgba(255, 204, 51, 0.7);
    background:
      linear-gradient(115deg, rgba(255, 204, 51, 0.15), transparent 50%),
      rgba(255, 204, 51, 0.035);
    box-shadow:
      0 0 12px rgba(255, 204, 51, 0.2),
      inset 0 0 12px rgba(255, 204, 51, 0.055);
    text-shadow:
      0 0 7px rgba(255, 204, 51, 0.92),
      0 0 15px rgba(255, 204, 51, 0.58),
      0 0 23px rgba(255, 204, 51, 0.28);
  }

  .mobile-menu-category-list button:nth-child(3n)::after {
    text-shadow:
      0 0 7px rgba(255, 204, 51, 0.92),
      0 0 15px rgba(255, 204, 51, 0.58),
      0 0 23px rgba(255, 204, 51, 0.28);
  }

  .mobile-menu-category-list button:last-child {
    color: white;
    border-color: rgba(255, 0, 204, 0.65);
    background:
      linear-gradient(115deg, rgba(255, 0, 204, 0.16), transparent 50%),
      rgba(138, 43, 226, 0.045);
    box-shadow:
      0 0 12px rgba(255, 0, 204, 0.21),
      inset 0 0 12px rgba(255, 0, 204, 0.055);
    text-shadow:
      0 0 7px rgba(255, 0, 204, 0.92),
      0 0 15px rgba(255, 0, 204, 0.58),
      0 0 23px rgba(138, 43, 226, 0.32);
  }

  .mobile-menu-category-list button:last-child::after {
    text-shadow:
      0 0 7px rgba(255, 0, 204, 0.92),
      0 0 15px rgba(255, 0, 204, 0.58),
      0 0 23px rgba(138, 43, 226, 0.32);
  }

  .mobile-menu-category-list button:active,
  .mobile-menu-subcategory-list a:active {
    border-color: var(--pink);
    background: rgba(255, 0, 204, 0.09);
  }

  .mobile-menu-back {
    margin: 18px 0 15px;
    padding: 8px 0;
    color: var(--blue);
    font-family: "Agdasima", Arial, sans-serif;
    font-size: 20px;
    background: transparent;
    border: 0;
  }

  .mobile-menu-current-category {
    margin-bottom: 14px;
    color: white;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 26px;
    text-align: center;
    text-shadow:
      0 0 8px var(--pink),
      0 0 15px var(--purple);
  }

  .mobile-menu-subcategory-list a {
    color: #f2f2f2;
    font-family: "Agdasima", Arial, sans-serif;
    font-size: 24px;
    padding: 12px 14px;
    text-align: left;
  }

  .mobile-menu-subcategory-list.is-dense-list {
    gap: 6px;
  }

  .mobile-menu-subcategory-list.is-dense-list a {
    padding: 9px 12px;
    color: #f4f4f4;
    font-size: 22px;
    background:
      linear-gradient(110deg, rgba(0, 240, 255, 0.04), transparent 52%),
      rgba(255, 255, 255, 0.024);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow:
      0 0 8px rgba(0, 240, 255, 0.11),
      inset 0 0 8px rgba(0, 240, 255, 0.028);
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.24),
      0 0 7px rgba(0, 240, 255, 0.25);
  }

  .mobile-menu-subcategory-list a.money-subcat {
    color: white;
    font-weight: 700;
    border-width: 1px;
  }

  .mobile-menu-subcategory-list a.rest-bars-subcat,
  .mobile-menu-subcategory-list a.vehicles-cars-subcat,
  .mobile-menu-subcategory-list a.isaw-subcat {
    color: white;
    border-color: rgba(255, 0, 204, 0.62);
    background:
      radial-gradient(circle at top left, rgba(255, 0, 204, 0.18), transparent 42%),
      rgba(255, 0, 204, 0.055);
    box-shadow:
      0 0 11px rgba(255, 0, 204, 0.22),
      inset 0 0 10px rgba(255, 0, 204, 0.07);
    text-shadow:
      0 0 7px rgba(255, 0, 204, 0.78),
      0 0 13px rgba(255, 0, 204, 0.34);
  }

  .mobile-menu-subcategory-list a.labor-subcat,
  .mobile-menu-subcategory-list a.vehicles-moto-subcat {
    color: white;
    border-color: rgba(88, 255, 122, 0.6);
    background:
      radial-gradient(circle at top left, rgba(88, 255, 122, 0.17), transparent 42%),
      rgba(88, 255, 122, 0.05);
    box-shadow:
      0 0 11px rgba(88, 255, 122, 0.2),
      inset 0 0 10px rgba(88, 255, 122, 0.06);
    text-shadow:
      0 0 7px rgba(88, 255, 122, 0.72),
      0 0 13px rgba(88, 255, 122, 0.3);
  }

  .mobile-menu-subcategory-list a.skilled-subcat,
  .mobile-menu-subcategory-list a.vehicles-rv-subcat,
  .mobile-menu-subcategory-list a.musicians-subcat {
    color: white;
    border-color: rgba(255, 204, 51, 0.68);
    background:
      radial-gradient(circle at top left, rgba(255, 204, 51, 0.18), transparent 42%),
      rgba(255, 204, 51, 0.055);
    box-shadow:
      0 0 11px rgba(255, 204, 51, 0.21),
      inset 0 0 10px rgba(255, 204, 51, 0.06);
    text-shadow:
      0 0 7px rgba(255, 204, 51, 0.78),
      0 0 13px rgba(255, 204, 51, 0.32);
  }

  .mobile-menu-subcategory-list a.office-subcat {
    color: white;
    border-color: rgba(0, 240, 255, 0.65);
    background:
      radial-gradient(circle at top left, rgba(0, 240, 255, 0.18), transparent 42%),
      rgba(0, 240, 255, 0.055);
    box-shadow:
      0 0 11px rgba(0, 240, 255, 0.22),
      inset 0 0 10px rgba(0, 240, 255, 0.07);
    text-shadow:
      0 0 7px rgba(0, 240, 255, 0.76),
      0 0 13px rgba(0, 240, 255, 0.32);
  }
}

/* Childcare form polish */

.childcare-fieldset {
  border: 1px solid rgba(0, 255, 255, 0.35);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.03);
}

.childcare-fieldset legend {
  padding: 0 10px;
  color: #ffd84d;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.childcare-fieldset .form-check {
  margin: 10px 0;
}

.license-warning-box {
  margin: 18px 0 22px;
  border-color: rgba(255, 216, 77, 0.55);
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.12);
}

.license-warning-box p {
  line-height: 1.5;
}

@media (max-width: 700px) {
  .childcare-fieldset {
    padding: 14px;
  }

  .childcare-fieldset legend {
    font-size: 0.85rem;
  }
}

/* Friends N' Love terms and orientation polish */

.fnl-orientation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.fnl-code-preview {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 14px;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffd84d;
  border: 1px solid rgba(255, 216, 77, 0.45);
  background: rgba(255, 216, 77, 0.08);
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.12);
}

.fnl-terms-box {
  margin: 28px 0 22px;
  padding: 22px;
  border-radius: 18px;
  border: 2px solid rgba(255, 216, 77, 0.45);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 77, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 22px rgba(255, 216, 77, 0.12);
}

.fnl-terms-box h3 {
  margin-bottom: 14px;
  color: #ffd84d;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.fnl-terms-box p {
  line-height: 1.55;
  margin-bottom: 12px;
}

.fnl-terms-box ul {
  margin: 14px 0 18px;
  padding-left: 22px;
}

.fnl-terms-box li {
  margin: 9px 0;
  line-height: 1.45;
}

.fnl-agree-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.fnl-agree-box input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  accent-color: #ffd84d;
}

.fnl-agree-box span {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.fnl-agree-note {
  margin-top: 10px;
  text-align: center;
  color: #ffd84d;
  font-size: 0.95rem;
}

#fnlCreatePostButton:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.7);
}

.fnl-terms-missedConnection {
  border-color: rgba(66, 170, 255, 0.55);
  box-shadow: 0 0 22px rgba(66, 170, 255, 0.12);
}

.fnl-terms-friends {
  border-color: rgba(88, 255, 122, 0.5);
  box-shadow: 0 0 22px rgba(88, 255, 122, 0.12);
}

.fnl-terms-dating {
  border-color: rgba(255, 105, 180, 0.58);
  box-shadow: 0 0 22px rgba(255, 105, 180, 0.14);
}

.fnl-terms-adultNotice {
  border-color: rgba(255, 55, 85, 0.62);
  box-shadow: 0 0 24px rgba(255, 55, 85, 0.16);
}

.fnl-terms-rock {
  border-color: rgba(185, 100, 255, 0.62);
  box-shadow: 0 0 24px rgba(185, 100, 255, 0.16);
}

@media (max-width: 700px) {
  .fnl-orientation-grid {
    grid-template-columns: 1fr;
  }

  .fnl-terms-box {
    padding: 18px;
    border-radius: 16px;
  }

  .fnl-agree-box {
    align-items: flex-start;
  }

  .fnl-agree-box span {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}


.listing-scorekeeper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffd84d;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: rgba(0, 255, 255, 0.07);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.14);
}

.listing-scorekeeper span {
  color: #00f7ff;
  margin: 0 4px;
}

@media (max-width: 700px) {
  .listing-scorekeeper {
    width: 100%;
    margin-top: 12px;
    font-size: 0.82rem;
  }
}


/* =========================================================
   Listing page filter/search refactor
   Added for subcategory-refactored.ejs
   ========================================================= */

.listing-hero-refactor {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.listing-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.listing-hero-top > div {
  flex: 1;
  min-width: 240px;
}

.listing-scorekeeper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 10px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(0, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: rgba(0, 255, 255, 0.07);
  box-shadow:
    0 0 16px rgba(0, 255, 255, 0.14),
    inset 0 0 12px rgba(255, 0, 204, 0.06);
}

.listing-scorekeeper span {
  color: var(--blue);
  margin: 0 4px;
}

.listing-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 22px 0 14px;
}

.listing-search-input {
  min-height: 48px;
}

.listing-search-btn {
  min-width: 120px;
  border: 1px solid rgba(0, 240, 255, 0.5);
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.08);
  color: white;
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.12);
}

.listing-search-btn:hover {
  background: var(--blue);
  color: black;
}

.listing-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.listing-view-controls,
.listing-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.listing-filter-pills {
  justify-content: center;
}

.listing-view-btn,
.listing-filter-pill,
.listing-sort-select {
  min-height: 42px;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.07);
  color: white;
  padding: 9px 14px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.08),
    inset 0 0 10px rgba(255, 0, 204, 0.035);
}

.listing-view-btn {
  width: 42px;
  padding: 0;
  cursor: pointer;
}

.listing-filter-pill.active,
.listing-view-btn.active,
.main-filter-pill {
  color: var(--gold);
  border-color: rgba(255, 204, 51, 0.6);
  box-shadow:
    0 0 14px rgba(0, 240, 255, 0.18),
    0 0 12px rgba(255, 204, 51, 0.12);
}

.listing-filter-pill:hover,
.listing-view-btn:hover,
.listing-sort-select:hover {
  border-color: var(--blue);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
}

.listing-sort-form {
  min-width: 170px;
}

.listing-sort-select {
  width: 100%;
  cursor: pointer;
}

.related-subcategories-bar {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.related-subcategories-bar span {
  color: var(--gold);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.related-subcategories-bar a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.related-subcategories-bar a:hover {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 0, 204, 0.55);
}

@media (max-width: 800px) {
  .listing-hero-refactor {
    max-width: 100%;
  }

  .listing-hero-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .listing-scorekeeper {
    width: 100%;
    font-size: 0.82rem;
  }

  .listing-search-form {
    grid-template-columns: 1fr;
  }

  .listing-search-btn {
    width: 100%;
    min-height: 44px;
  }

  .listing-toolbar {
    grid-template-columns: 1fr;
  }

  .listing-view-controls,
  .listing-filter-pills {
    justify-content: center;
  }

  .listing-sort-form {
    width: 100%;
  }

  .listing-sort-select {
    width: 100%;
  }

  .related-subcategories-bar {
    gap: 8px 10px;
  }
}

/* ==========================================================
   LIST VIEW MODES
========================================================== */

.classified-list.listing-view-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.classified-list.listing-view-large {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.classified-list.listing-view-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

/* ==========================================================
   DEFAULT ROW
========================================================== */

.classified-row-link{
    transition:.18s;
}

.classified-row-link:hover{
    transform:translateY(-2px);
}

/* ==========================================================
   LARGE LIST
========================================================== */

.listing-view-large .classified-row-link{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:18px;

    border-radius:18px;

    background:#1b1b1b;
}

.listing-view-large .classified-thumb{

    width:180px;

    min-width:180px;

    height:135px;
}

.listing-view-large .classified-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:12px;
}

.listing-view-large .classified-title{

    font-size:1.35rem;

    margin-bottom:8px;
}

.listing-view-large .classified-meta{

    font-size:1rem;
}

.listing-view-large .classified-extra-meta{

    margin-top:10px;

    color:#cfcfcf;
}

/* ==========================================================
   GALLERY
========================================================== */

.listing-view-gallery .classified-row-link{

    display:flex;

    flex-direction:column;

    background:#1a1a1a;

    border-radius:18px;

    overflow:hidden;

    transition:.2s;
}

.listing-view-gallery .classified-row-link:hover{

    transform:translateY(-4px);
}

.listing-view-gallery .classified-thumb{

    width:100%;

    height:220px;
}

.listing-view-gallery .classified-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;
}

.listing-view-gallery .classified-info{

    padding:15px;
}

.listing-view-gallery .classified-title{

    font-size:1.15rem;

    margin-bottom:10px;
}

.listing-view-gallery .classified-meta{

    font-size:.95rem;
}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:700px){

.listing-view-gallery{

grid-template-columns:1fr;

}

.listing-view-large .classified-row-link{

flex-direction:column;

}

.listing-view-large .classified-thumb{

width:100%;

height:220px;

}

}

/*=========================================================
ANIMATIONS
=========================================================*/

.classified-list{

transition:.35s ease;

}

.classified-row-link{

transition:
transform .20s,
box-shadow .20s,
background .20s;

}

.classified-row-link:hover{

transform:translateY(-5px);

box-shadow:0 12px 30px rgba(0,0,0,.35);

}

/*=========================================================
GALLERY
=========================================================*/

.listing-view-gallery .classified-row-link{

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

}

.listing-view-gallery .classified-row-link:hover{

border-color:#ffb000;

}

.listing-view-gallery .classified-thumb{

overflow:hidden;

}

.listing-view-gallery img{

transition:transform .45s;

}

.listing-view-gallery .classified-row-link:hover img{

transform:scale(1.08);

}

.listing-view-gallery .classified-info{

display:flex;

flex-direction:column;

gap:8px;

}

.listing-view-gallery .classified-title{

font-size:1.2rem;

font-weight:bold;

color:white;

}

.listing-view-gallery .classified-location{

color:#ffcc4d;

font-weight:bold;

}

.listing-view-gallery .classified-meta{

color:#9fd8ff;

}

.listing-view-gallery .classified-extra-meta{

color:#bfbfbf;

font-size:.92rem;

}

/*=========================================================
LARGE VIEW
=========================================================*/

.listing-view-large .classified-row-link{

border-left:5px solid transparent;

}

.listing-view-large .classified-row-link:hover{

border-left:5px solid #ffb000;

}

/*=========================================================
ACTIVE VIEW BUTTON
=========================================================*/

.listing-view-btn{

transition:.2s;

}

.listing-view-btn:hover{

transform:scale(1.1);

}

.listing-view-btn.active{

background:#ffb000;

color:black;

box-shadow:0 0 15px rgba(255,176,0,.5);

}


/* ==========================================================
   SUBCATEGORY LISTING V2 — CL FUNCTION, KEMP STYLE
   Desktop: sticky left filters + slim top controls
   Mobile: compact top controls + /filters page
========================================================== */

.subcategory-v2-page {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 18px 40px;
}

.subcategory-v2-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 22px;
  max-width: 1640px;
  margin: 22px auto 0;
  align-items: start;
}

.subcategory-sidebar {
  position: sticky;
  top: 74px;
  max-height: calc(100vh - 92px);
  overflow: auto;
  padding: 18px 14px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.97), rgba(5, 5, 5, 0.97));
  box-shadow:
    0 0 18px rgba(0, 240, 255, 0.08),
    inset 0 0 18px rgba(255, 0, 204, 0.035);
}

.sidebar-title {
  font-family: "Orbitron", Arial, sans-serif;
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.45);
}

.sidebar-subtitle {
  color: var(--gold);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.sidebar-filter-form {
  gap: 12px;
}

.sidebar-filter-form .filter-section {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.sidebar-filter-form .filter-section h2 {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-filter-form .filter-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.sidebar-filter-form input,
.sidebar-filter-form select {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 14px;
}

.sidebar-filter-form .filter-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.sidebar-filter-form .filter-check-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.025);
  cursor: pointer;
}

.sidebar-filter-form .filter-check-card input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.sidebar-filter-form .filter-check-card strong {
  display: block;
  color: white;
  font-size: 14px;
}

.sidebar-filter-form .filter-check-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.sidebar-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 6px;
}

.sidebar-actions .post-btn {
  width: 100%;
  text-align: center;
  padding: 8px 10px;
}

.sidebar-clear-btn {
  border-color: rgba(255, 204, 51, 0.65);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 204, 51, 0.18);
}

.subcategory-results-panel {
  min-width: 0;
}

.subcategory-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.88));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.14);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.08),
    inset 0 0 16px rgba(255, 0, 204, 0.035);
}

.subcategory-top-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.subcategory-title-block {
  min-width: 0;
}

.subcategory-title-block .list-eyebrow {
  font-size: 18px;
  margin-bottom: 2px;
  text-align: left;
}

.subcategory-title-block h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  text-transform: capitalize;
  color: white;
  text-shadow:
    0 0 8px var(--pink),
    0 0 16px var(--purple);
}

.hud-scorekeeper {
  min-width: 210px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.14), transparent 50%),
    rgba(0, 240, 255, 0.035);
  box-shadow:
    0 0 18px rgba(0, 240, 255, 0.14),
    inset 0 0 14px rgba(255, 0, 204, 0.055);
  font-family: "Orbitron", Arial, sans-serif;
  text-align: center;
}

.hud-scorekeeper .hud-live {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hud-scorekeeper .hud-numbers {
  display: block;
  color: var(--blue);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.hud-scorekeeper .hud-total {
  color: white;
}

.listing-search-form.v2-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 10px;
  margin: 0 0 12px;
}

.listing-search-form.v2-search .listing-search-input {
  min-height: 42px;
}

.listing-search-form.v2-search .listing-search-btn {
  min-height: 42px;
}

.subcategory-control-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.mobile-filter-plus {
  display: none;
}

.subcategory-desktop-sidebar-spacer {
  display: none;
}

.related-subcategories-bar.v2-related {
  justify-content: flex-start;
  margin-top: 12px;
  padding-top: 11px;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.related-subcategories-bar.v2-related span,
.related-subcategories-bar.v2-related a {
  flex: 0 0 auto;
}

.classified-list.listing-view-gallery {
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
}

.listing-view-gallery .classified-row-link {
  min-height: 100%;
}

.listing-view-gallery .classified-thumb {
  height: 190px;
}

.scorekeeper-live-dot,
.hud-dot {
  color: var(--green);
  text-shadow: 0 0 10px rgba(88, 255, 122, 0.85);
}

/* Hide the old giant hero listing card if an older class survives */
.subcategory-v2-page .list-hero-card {
  max-width: none;
}

/* Mobile: CL-style compact controls, no desktop sidebar */
@media (max-width: 900px) {
  .subcategory-v2-page {
    padding: 0 10px 28px;
  }

  .subcategory-v2-shell {
    display: block;
    margin-top: 14px;
  }

  .subcategory-sidebar {
    display: none;
  }

  .subcategory-topbar {
    position: static;
    border-radius: 14px;
    padding: 12px;
  }

  .subcategory-top-line {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    margin-bottom: 10px;
  }

  .subcategory-title-block .list-eyebrow {
    text-align: center;
    font-size: 17px;
  }

  .subcategory-title-block h1 {
    font-size: 23px;
  }

  .hud-scorekeeper {
    width: 100%;
    min-width: 0;
  }

  .listing-search-form.v2-search {
    grid-template-columns: 1fr 54px;
    gap: 8px;
  }

  .listing-search-form.v2-search .listing-search-btn {
    min-width: 54px;
    padding: 0;
    font-size: 0;
  }

  .listing-search-form.v2-search .listing-search-btn::before {
    content: "🔎";
    font-size: 20px;
  }

  .subcategory-control-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-filter-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(0, 240, 255, 0.45);
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.07);
    color: white;
    padding: 9px 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    box-shadow:
      0 0 10px rgba(0, 240, 255, 0.08),
      inset 0 0 10px rgba(255, 0, 204, 0.035);
  }

  .listing-filter-pills .desktop-only-filter {
    display: none;
  }

  .listing-view-controls {
    justify-content: center;
  }

  .related-subcategories-bar.v2-related {
    justify-content: flex-start;
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .classified-list.listing-view-gallery {
    grid-template-columns: 1fr;
  }

  .listing-view-gallery .classified-thumb {
    height: 220px;
  }
}


/* ==========================================================
   SUBCATEGORY NAV STRIP — DYNAMIC CATEGORY NAV
========================================================== */

.subcategory-nav-strip {
  max-width: 1640px;
  margin: 18px auto 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 18px;
}

.subcategory-nav-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 9px 16px;
  text-decoration: none;
  border: 1px solid rgba(0, 240, 255, 0.55);
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.13), transparent 45%),
    rgba(0, 240, 255, 0.045);
  box-shadow:
    0 0 14px rgba(0, 240, 255, 0.16),
    inset 0 0 14px rgba(255, 0, 204, 0.055);
  transition: 0.2s ease;
}

.subcategory-nav-btn:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow:
    0 0 18px rgba(0, 240, 255, 0.24),
    0 0 16px rgba(255, 0, 204, 0.12),
    inset 0 0 16px rgba(0, 240, 255, 0.06);
}

.subcategory-nav-btn .nav-btn-small {
  font-family: "Agdasima", Arial, sans-serif;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.subcategory-nav-btn .nav-btn-main {
  font-family: "Orbitron", Arial, sans-serif;
  color: white;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 8px var(--pink),
    0 0 16px var(--purple),
    0 0 22px rgba(0, 240, 255, 0.22);
}

.emp-nav-btn {
  border-color: rgba(255, 204, 51, 0.55);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 51, 0.12), transparent 45%),
    rgba(255, 204, 51, 0.04);
  box-shadow:
    0 0 14px rgba(255, 204, 51, 0.13),
    inset 0 0 14px rgba(255, 0, 204, 0.055);
}

@media (max-width: 800px) {
  .subcategory-nav-strip {
    margin-top: 14px;
    padding: 0 10px;
    gap: 10px;
  }

  .subcategory-nav-btn {
    flex: 1 1 100%;
    min-width: 0;
    min-height: 52px;
    text-align: center;
    align-items: center;
  }

  .subcategory-nav-btn .nav-btn-small {
    font-size: 17px;
  }

  .subcategory-nav-btn .nav-btn-main {
    font-size: 16px;
  }
}


/* ==========================================================
   FILTER SEGMENT BUTTONS — HUSTLES PAID / UNPAID
========================================================== */

.filter-segment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.035);
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.12),
    inset 0 0 12px rgba(255, 0, 204, 0.035);
}

.filter-segment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  cursor: pointer;
  border-right: 1px solid rgba(0, 240, 255, 0.22);
  color: white;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.filter-segment:last-child {
  border-right: none;
}

.filter-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-segment:hover {
  background: rgba(0, 240, 255, 0.12);
  color: var(--blue);
}

.filter-segment.active {
  background: rgba(255, 204, 51, 0.16);
  color: var(--gold);
  box-shadow:
    0 0 14px rgba(255, 204, 51, 0.28),
    inset 0 0 12px rgba(255, 204, 51, 0.1);
}


/* ==========================================================
   CREATE AD FORM POLISH — WORKFORCE / HUSTLES
========================================================== */

.create-ad-box {
  max-width: 980px;
  margin: 34px auto;
  padding: 28px;
}

.kemp-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.form-grid-2,
.form-grid-3 {
  display: grid;
  gap: 14px;
}

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

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

.form-field {
  display: grid;
  gap: 6px;
  color: white;
}

.form-field span,
.kemp-fieldset legend {
  color: var(--gold);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.kemp-fieldset {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 14px;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.kemp-fieldset legend {
  padding: 0 8px;
}

.kemp-form input,
.kemp-form textarea,
.kemp-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 11px 12px;
}

.kemp-form input[type="checkbox"],
.kemp-form input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.radio-stack,
.checkbox-grid {
  display: grid;
  gap: 10px;
}

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

.full-width-btn {
  width: 100%;
}

.success-panel {
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  padding: 18px;
  margin: 18px 0;
  background: rgba(0, 240, 255, 0.05);
}

@media (max-width: 800px) {
  .form-grid-2,
  .form-grid-3,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .create-ad-box {
    margin: 18px 10px;
    padding: 18px;
  }
}
\n

/* ==========================================================
   EDIT ROOM — COMMAND CENTER LAYOUT
========================================================== */

.edit-room-page {
  width: min(980px, calc(100% - 28px));
  margin: 34px auto 60px;
}

.edit-room-command {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 204, 0.13), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 240, 255, 0.10), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.08), inset 0 0 28px rgba(255, 0, 204, 0.035);
}

.edit-room-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 10px;
}

.edit-room-command h1 {
  margin: 0;
  color: white;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px var(--pink), 0 0 18px var(--purple), 0 0 26px rgba(0, 240, 255, 0.2);
}

.edit-room-intro {
  max-width: 760px;
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.edit-room-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(0, 240, 255, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 240, 255, 0.055);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77ff77;
  box-shadow: 0 0 10px #77ff77;
}

.edit-room-control-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: stretch;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
}

.edit-room-thumb {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(0, 0, 0, 0.55);
}

.edit-room-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.edit-room-no-image {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 54px;
}

.edit-room-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.edit-room-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.edit-room-meta h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
  overflow-wrap: anywhere;
}

.edit-room-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.edit-room-facts p {
  margin: 0;
  padding: 11px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.045);
  border: 1px solid rgba(0, 240, 255, 0.13);
}

.edit-room-facts strong,
.edit-room-facts span {
  display: block;
}

.edit-room-facts strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.edit-room-facts span {
  color: white;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.edit-room-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.edit-room-action-form {
  margin: 0;
}

.edit-room-big-action {
  width: 100%;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.12), transparent 45%), rgba(0, 240, 255, 0.045);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.10);
  cursor: pointer;
  transition: 0.18s ease;
  font: inherit;
  text-align: left;
}

.edit-room-big-action:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.26), 0 0 18px rgba(255, 0, 204, 0.10);
}

.edit-room-big-action span {
  font-size: 28px;
}

.edit-room-big-action strong {
  font-family: "Orbitron", Arial, sans-serif;
  color: var(--blue);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.edit-room-big-action small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.danger-action {
  border-color: rgba(255, 70, 100, 0.38);
  background: radial-gradient(circle at top left, rgba(255, 70, 100, 0.13), transparent 45%), rgba(255, 70, 100, 0.045);
}

.danger-action strong {
  color: #ff6f8f;
}

.entry-gate-note {
  margin-top: 20px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 204, 51, 0.055);
}

.entry-gate-note h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Orbitron", Arial, sans-serif;
}

.entry-gate-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .edit-room-control-card {
    grid-template-columns: 1fr;
  }

  .edit-room-thumb {
    max-width: 420px;
    height: 240px;
  }

  .edit-room-facts {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .edit-room-command {
    padding: 18px;
  }

  .edit-room-topline {
    flex-direction: column;
  }

  .edit-room-actions-grid {
    grid-template-columns: 1fr;
  }

  .edit-room-big-action {
    min-height: 118px;
  }
}


/* ==========================================================
   EDIT AD IMAGE GRID
========================================================== */

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

.edit-image-tile {
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
}

.edit-image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ==========================================================
   CITY SELECTOR PAGE
========================================================== */

.city-selector-page {
  width: min(1500px, calc(100% - 32px));
  margin: 42px auto 80px;
}

.city-selector-box {
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(255, 0, 221, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 221, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.07), transparent 34%),
    #0d0d10;
  box-shadow:
    0 0 35px rgba(255, 0, 221, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.015);
}

.city-selector-box > h1 {
  margin: 6px 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 8px #ff00d9,
    0 0 24px rgba(255, 0, 217, 0.85);
}

.city-selector-intro {
  max-width: 760px;
  margin: 0 0 26px;
  color: #d5d5dc;
  font-size: 1.05rem;
}

.city-search-field {
  display: block;
  margin: 28px 0 42px;
}

.city-search-field > span {
  display: block;
  margin-bottom: 9px;
  color: #ffd43b;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.city-search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 12px;
  background: #050507;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.city-search-field input:focus {
  border-color: #00e5ff;
  box-shadow:
    0 0 0 3px rgba(0, 229, 255, 0.12),
    0 0 18px rgba(0, 229, 255, 0.2);
}

.selected-city-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.055);
}

.selected-city-panel span {
  color: #bcbcc5;
}

.selected-city-panel strong {
  color: #fff;
  font-size: 1.1rem;
  text-transform: capitalize;
}

.selected-city-panel .post-btn {
  margin-left: auto;
}

.city-country-section {
  margin-top: 54px;
}

.canada-city-section {
  margin-top: 78px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.country-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 217, 0.12),
    rgba(0, 229, 255, 0.06)
  );
  border: 1px solid rgba(255, 0, 217, 0.26);
}

.country-banner-ca {
  background: linear-gradient(
    90deg,
    rgba(255, 45, 45, 0.12),
    rgba(255, 255, 255, 0.035)
  );
  border-color: rgba(255, 70, 70, 0.32);
}

.country-flag {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  filter: drop-shadow(0 0 13px rgba(255, 255, 255, 0.16));
}

.country-kicker {
  margin: 0 0 3px;
  color: #bcbcc5;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.country-banner h2 {
  margin: 0;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.currency-notice {
  margin: -8px 0 24px;
  padding: 12px 15px;
  border-left: 3px solid #ff3f4f;
  background: rgba(255, 63, 79, 0.06);
  color: #f0f0f4;
  border-radius: 0 9px 9px 0;
}

.city-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.city-region-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent),
    #101014;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.city-region-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff00d9, #00e5ff);
  opacity: 0.72;
}

.city-region-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.68);
  box-shadow:
    0 13px 34px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(0, 229, 255, 0.11);
}

.city-region-card h3 {
  margin: 2px 0 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 212, 59, 0.22);
  color: #ffd43b;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.city-link-list {
  display: grid;
  gap: 6px;
}

.city-link-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #f5f5f8;
  text-decoration: none;
  text-transform: capitalize;
  overflow-wrap: anywhere;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    padding-left 0.18s ease;
}

.city-link-list a::before {
  content: "›";
  margin-right: 8px;
  color: #ff00d9;
  opacity: 0.75;
}

.city-link-list a:hover,
.city-link-list a:focus-visible {
  padding-left: 15px;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.075);
  outline: none;
}

.city-region-card[hidden],
.city-link-list a[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .city-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .city-selector-page {
    width: min(100% - 18px, 1500px);
    margin-top: 20px;
  }

  .city-selector-box {
    padding: 20px 14px 28px;
    border-radius: 16px;
  }

  .city-region-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .country-banner {
    align-items: flex-start;
    padding: 16px;
  }

  .country-flag {
    font-size: 3.3rem;
  }

  .selected-city-panel {
    align-items: stretch;
  }

  .selected-city-panel .post-btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .city-region-card {
    padding: 17px;
  }
}

/* ==========================================================
   CITY SELECTOR — COMPACT MASONRY FIX
   Paste this AFTER the previous city-page CSS so it overrides it.
========================================================== */

.city-selector-page {
  width: min(1380px, calc(100% - 24px));
  margin: 28px auto 64px;
}

.city-selector-box {
  padding: clamp(20px, 3vw, 36px);
}

.city-selector-box > h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.country-banner {
  gap: 22px;
  padding: 20px 24px;
  overflow: hidden;
}

.country-flag-svg {
  width: 112px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 7px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.22),
    0 8px 24px rgba(0,0,0,.35);
}

.country-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

/* Masonry columns remove the enormous empty gaps caused by CSS grid rows. */
.city-region-grid {
  display: block;
  column-count: 4;
  column-gap: 16px;
}

.city-region-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 16px;
  break-inside: avoid;
  page-break-inside: avoid;
  border-radius: 12px;
  vertical-align: top;
}

.city-region-card:hover {
  transform: translateY(-2px);
}

.city-region-card h3 {
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: .9rem;
}

.city-link-list {
  gap: 2px;
}

.city-link-list a {
  padding: 5px 7px;
  font-size: .94rem;
  line-height: 1.2;
}

.city-link-list a::before {
  margin-right: 6px;
}

.city-link-list a:hover,
.city-link-list a:focus-visible {
  padding-left: 11px;
}

.canada-city-section {
  margin-top: 54px;
  padding-top: 34px;
}

.canada-city-section .city-region-grid {
  column-count: 3;
}

@media (max-width: 1180px) {
  .city-region-grid {
    column-count: 3;
  }
}

@media (max-width: 860px) {
  .city-region-grid,
  .canada-city-section .city-region-grid {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .city-region-grid,
  .canada-city-section .city-region-grid {
    column-count: 1;
  }

  .country-banner {
    align-items: center;
    gap: 14px;
    padding: 16px;
  }

  .country-flag-svg {
    width: 82px;
    height: 50px;
  }

  .country-kicker {
    font-size: .7rem;
  }

  .city-region-card {
    margin-bottom: 12px;
  }
}

/* =========================================================
   CITIES PAGE — LIVE PATRIOTIC IMAGE
   Canonical version used by the existing cities.ejs HTML.
   ========================================================= */

.cities-patriotic-stage {
  position: relative;
  isolation: isolate;
  width: min(100%, 1120px);
  margin: 0 auto 28px;
  padding: 12px;
}

.cities-patriotic-stage::before,
.cities-patriotic-stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 8%;
  bottom: 8%;
  width: 42%;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
  pointer-events: none;
  animation: patriotic-backlight 5s ease-in-out infinite alternate;
}

.cities-patriotic-stage::before {
  left: -5%;
  background:
    radial-gradient(
      circle,
      rgba(20, 100, 255, 0.75) 0%,
      rgba(15, 70, 210, 0.25) 45%,
      transparent 72%
    );
}

.cities-patriotic-stage::after {
  right: -5%;
  background:
    radial-gradient(
      circle,
      rgba(255, 0, 145, 0.72) 0%,
      rgba(210, 0, 95, 0.24) 45%,
      transparent 72%
    );
  animation-delay: -2.5s;
}

.cities-patriotic-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 3px;
  border-radius: 24px;
  background:
    linear-gradient(
      110deg,
      #1b64ff,
      #ffffff,
      #ff1493,
      #6b25ff,
      #ffffff,
      #ff1744,
      #1b64ff
    );
  background-size: 350% 350%;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.55),
    0 0 18px rgba(255, 0, 170, 0.5),
    0 0 34px rgba(20, 90, 255, 0.32),
    0 18px 42px rgba(0, 0, 0, 0.7);
  animation:
    patriotic-border-flow 7s linear infinite,
    patriotic-frame-pulse 3.2s ease-in-out infinite;
}

.cities-patriotic-frame::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 0;
  border-radius: 21px;
  background: #04040a;
  pointer-events: none;
}

.cities-patriotic-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 20px;
  object-fit: contain;
  filter:
    contrast(1.04)
    saturate(1.08)
    brightness(1.02);
  animation: patriotic-image-breath 4.5s ease-in-out infinite;
}

.patriotic-shine {
  position: absolute;
  z-index: 4;
  top: -45%;
  left: -45%;
  width: 24%;
  height: 190%;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 255, 255, 0.08) 75%,
      transparent 100%
    );
  filter: blur(4px);
  transform: rotate(18deg);
  animation: patriotic-shine-sweep 6.5s ease-in-out infinite;
}

.patriotic-reflector {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 24%;
  height: 92%;
  opacity: 0.35;
  filter: blur(6px);
  pointer-events: none;
  transform-origin: bottom center;
}

.patriotic-reflector-left {
  left: 2%;
  background:
    linear-gradient(
      72deg,
      transparent 10%,
      rgba(30, 100, 255, 0.04) 28%,
      rgba(30, 100, 255, 0.45) 52%,
      rgba(255, 255, 255, 0.18) 63%,
      transparent 78%
    );
  animation: patriotic-reflector-left 5.5s ease-in-out infinite alternate;
}

.patriotic-reflector-right {
  right: 2%;
  background:
    linear-gradient(
      -72deg,
      transparent 10%,
      rgba(255, 0, 150, 0.04) 28%,
      rgba(255, 0, 150, 0.42) 52%,
      rgba(255, 255, 255, 0.17) 63%,
      transparent 78%
    );
  animation: patriotic-reflector-right 5.5s ease-in-out infinite alternate;
}

/* Streamer discharges traveling around the frame */

.patriotic-border-light {
  display: none !important;
}

/* Bright electrical core */

/* Streamer visuals removed */

/* Branching streamer discharge */



.border-light-one {
  --streamer-rotation: -8deg;
  top: -7px;
  left: 8%;
  animation:
    patriotic-streamer-top 1.15s linear infinite,
    patriotic-streamer-flicker 0.16s steps(2, end) infinite;
}

.border-light-two {
  --streamer-rotation: 18deg;
  top: 35%;
  right: -7px;
  animation:
    patriotic-streamer-right 0.9s linear infinite,
    patriotic-streamer-flicker 0.13s steps(2, end) infinite;
}

.border-light-three {
  --streamer-rotation: 5deg;
  bottom: -7px;
  left: 35%;
  animation:
    patriotic-streamer-bottom 1.3s linear infinite,
    patriotic-streamer-flicker 0.18s steps(2, end) infinite;
}

/* Animations */

@keyframes patriotic-border-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 350% 50%;
  }
}

@keyframes patriotic-frame-pulse {
  0%,
  100% {
    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.5),
      0 0 18px rgba(255, 0, 170, 0.42),
      0 0 32px rgba(20, 90, 255, 0.27),
      0 18px 42px rgba(0, 0, 0, 0.7);
  }

  50% {
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.75),
      0 0 27px rgba(255, 0, 170, 0.62),
      0 0 48px rgba(20, 90, 255, 0.45),
      0 22px 50px rgba(0, 0, 0, 0.8);
  }
}

@keyframes patriotic-image-breath {
  0%,
  100% {
    filter:
      contrast(1.04)
      saturate(1.08)
      brightness(1.01);
  }

  50% {
    filter:
      contrast(1.07)
      saturate(1.14)
      brightness(1.07);
  }
}

@keyframes patriotic-shine-sweep {
  0%,
  18% {
    left: -45%;
    opacity: 0;
  }

  25% {
    opacity: 0.85;
  }

  55% {
    opacity: 0.5;
  }

  68%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes patriotic-backlight {
  from {
    transform: scale(0.9);
    opacity: 0.3;
  }

  to {
    transform: scale(1.12);
    opacity: 0.58;
  }
}

@keyframes patriotic-reflector-left {
  from {
    transform: rotate(-8deg) scaleX(0.85);
    opacity: 0.18;
  }

  to {
    transform: rotate(10deg) scaleX(1.2);
    opacity: 0.48;
  }
}

@keyframes patriotic-reflector-right {
  from {
    transform: rotate(8deg) scaleX(0.85);
    opacity: 0.18;
  }

  to {
    transform: rotate(-10deg) scaleX(1.2);
    opacity: 0.48;
  }
}









/* Responsive adjustments */

@media (max-width: 700px) {
  .cities-patriotic-stage {
    padding: 7px;
    margin-bottom: 20px;
  }

  .cities-patriotic-frame {
    padding: 2px;
    border-radius: 16px;
  }

  .cities-patriotic-frame::before {
    inset: 2px;
    border-radius: 14px;
  }

  .cities-patriotic-image {
    border-radius: 14px;
  }

  .patriotic-reflector {
    opacity: 0.22;
  }

  .patriotic-border-light {
    width: 14px;
    height: 14px;
  }

  .patriotic-border-light::before {
    inset: 5px;
  }

  .patriotic-border-light::after {
    width: 19px;
    height: 19px;
  }

  .border-light-one {
    top: -5px;
  }

  .border-light-two {
    right: -5px;
  }

  .border-light-three {
    bottom: -5px;
  }
}

/* Accessibility: respect visitors who disable animation */

@media (prefers-reduced-motion: reduce) {
  .cities-patriotic-stage *,
  .cities-patriotic-stage::before,
  .cities-patriotic-stage::after {
    animation: none !important;
  }
}

/* ==========================================================
   MARKET NAVIGATION — USA, CANADA, NEARBY & MAJOR CITIES
========================================================== */

.geo-market-nav {
  position: relative;
  isolation: isolate;
  pointer-events: none;
}

.geo-market-nav::before,
.geo-market-nav::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18px -80px -24px;
  border-radius: 34px;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-size: min(82vw, 900px) auto;
  opacity: 0;
  filter: saturate(0.7);
  pointer-events: none;
  transition: opacity 700ms ease;
}

.geo-market-nav::before {
  background-image: url("/images/map-los-angeles.svg");
  filter:
    saturate(0.82)
    drop-shadow(0 0 4px rgba(255, 92, 225, 0.48))
    drop-shadow(0 0 11px rgba(150, 86, 255, 0.24));
}

.geo-market-nav::after {
  background-image: url("/images/map-usa.svg");
  background-position: center 42%;
  background-size: min(105vw, 1180px) auto;
  filter:
    saturate(0.82)
    drop-shadow(0 0 4px rgba(185, 124, 255, 0.48))
    drop-shadow(0 0 11px rgba(0, 240, 255, 0.2));
}

.geo-market-nav.show-local-map::before {
  opacity: 0.24;
}

.geo-market-nav.show-usa-map::before {
  opacity: 0;
}

.geo-market-nav.show-usa-map::after {
  opacity: 0.25;
}

.geo-market-rail {
  position: fixed;
  z-index: 40;
  top: 235px;
  width: 175px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}

.geo-market-rail-left {
  left: max(14px, calc(50vw - 925px));
}

.geo-market-rail-right {
  right: max(14px, calc(50vw - 925px));
}

.geo-market-button,
.nearby-market-panel,
.major-market-panel {
  border: 1px solid rgba(90, 246, 255, 0.9);
  border-radius: 15px;
  color: white;
  background:
    linear-gradient(145deg, rgba(0, 240, 255, 0.13), transparent 45%),
    linear-gradient(315deg, rgba(255, 0, 204, 0.14), transparent 48%),
    rgba(3, 5, 9, 0.96);
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.5),
    0 0 16px rgba(0, 240, 255, 0.36),
    inset 0 0 18px rgba(0, 240, 255, 0.08);
}

.geo-market-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 8px #00f0ff;
}

.geo-market-button:hover,
.nearby-market-list a:hover,
.major-market-list a:hover {
  transform: translateY(-1px);
  filter: brightness(1.2);
}

.geo-market-canada {
  border-color: rgba(255, 74, 104, 0.9);
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.45),
    0 0 17px rgba(255, 40, 92, 0.4),
    inset 0 0 18px rgba(255, 40, 92, 0.09);
  text-shadow: 0 0 8px #ff315d;
}

.nearby-market-panel {
  padding: 0;
  overflow: hidden;
}

.geo-expandable-panel > summary {
  cursor: pointer;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  list-style: none;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  transition: 0.2s ease;
}

.geo-expandable-panel > summary::-webkit-details-marker {
  display: none;
}

.nearby-market-panel > summary {
  margin: 0;
  color: #ffcc33;
  font-family: "Patrick Hand SC", cursive;
  font-size: 22px;
  letter-spacing: 1px;
  text-shadow: 0 0 9px rgba(255, 204, 51, 0.78);
}

.major-market-panel > summary {
  color: #ffcc33;
  font-family: "Patrick Hand SC", cursive;
  font-size: 22px;
  letter-spacing: 1px;
  text-shadow: 0 0 9px rgba(255, 204, 51, 0.78);
}

.geo-expandable-panel[open] > summary {
  border-bottom: 1px solid rgba(255, 0, 204, 0.35);
}

.nearby-market-list,
.major-market-list {
  display: grid;
  gap: 6px;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
}

.nearby-market-list a,
.major-market-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 0, 204, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font: 700 13px "Agdasima", sans-serif;
  transition: 0.2s ease;
}

.nearby-market-list small {
  flex: 0 0 auto;
  color: #ffcc33;
  font-size: 10px;
}

.major-market-panel {
  overflow: hidden;
}

.major-market-panel[open] {
  width: max-content;
  max-width: 100%;
  justify-self: center;
}

.major-market-panel summary {
  color: #ffcc33;
}

.major-market-list {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  max-height: none;
  overflow: visible;
}

.major-market-list a {
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: #ffcc33;
  font-size: 15px;
  text-shadow:
    0 0 5px rgba(255, 235, 135, 0.72),
    0 0 10px rgba(255, 204, 51, 0.38);
}

.city-anchor-target {
  position: relative;
  top: -90px;
}

@media (min-width: 1800px) {
  .geo-market-rail-right {
    align-items: flex-end;
  }

  .geo-market-rail-right .nearby-market-panel[open] {
    width: 600px;
  }

  .geo-market-rail-right .major-market-panel[open] {
    width: max-content;
    max-width: 600px;
  }

  .geo-market-rail-right .nearby-market-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1799px) and (min-width: 801px) {
  .geo-market-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 14px;
    max-width: 900px;
    margin: 18px auto 0;
    padding: 0 20px;
    pointer-events: auto;
  }

  .geo-market-rail {
    position: static;
    width: auto;
  }

  .geo-market-rail-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
  }

  .geo-market-rail-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

@media (max-width: 800px) {
  .geo-market-nav {
    display: grid;
    gap: 11px;
    padding: 14px 16px 4px;
    pointer-events: auto;
    background: #030303;
  }

  .geo-market-nav::before,
  .geo-market-nav::after {
    inset: 0;
    border-radius: 0;
    background-position: center 70px;
    background-size: 115% auto;
  }

  .geo-market-nav.show-local-map::before,
  .geo-market-nav.show-usa-map::after {
    opacity: 0.17;
  }

  .geo-market-rail {
    position: static;
    width: auto;
  }

  .geo-market-rail-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .geo-market-button {
    min-height: 48px;
    font-size: 12px;
  }

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

  .nearby-market-list a {
    font-size: 14px;
  }

  .major-market-panel summary {
    font-size: 12px;
  }

  .major-market-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .major-market-panel[open] {
    width: auto;
    max-width: none;
    justify-self: stretch;
  }

  .major-market-list a {
    width: auto;
    font-size: 14px;
    color: #ffcc33;
  }
}

@media (max-width: 800px) {
  .hero-layout .video-card h3 {
    width: min(100%, 390px);
    margin: 0 auto 12px;
    padding: 8px 12px;
    color: var(--gold);
    border: 1px solid rgba(255, 229, 125, 0.82);
    border-radius: 9px;
    background:
      linear-gradient(180deg, rgba(255, 231, 143, 0.065), transparent 48%),
      rgba(12, 10, 5, 0.96);
    box-shadow:
      0 0 3px rgba(255, 247, 210, 0.75),
      0 0 11px rgba(255, 220, 84, 0.48),
      0 0 20px rgba(255, 204, 51, 0.2),
      inset 0 0 10px rgba(255, 204, 51, 0.07);
  }
}

@media (max-width: 800px) {
  .home-navbar .home-nav-actions .post-btn:not(.home-profile-btn) {
    box-shadow:
      0 0 4px rgba(205, 255, 255, 0.68),
      0 0 14px rgba(0, 240, 255, 0.46),
      0 0 22px rgba(0, 240, 255, 0.18);
  }

  .home-navbar .home-nav-actions .home-profile-btn {
    box-shadow:
      0 0 4px rgba(255, 220, 249, 0.66),
      0 0 14px rgba(255, 59, 219, 0.46),
      0 0 22px rgba(255, 0, 204, 0.18);
  }

  .mobile-menu-category-list button {
    border-width: 0.7px !important;
    border-color: var(--kat-bright) !important;
    background:
      linear-gradient(115deg, color-mix(in srgb, var(--kat-bright) 34%, transparent), transparent 52%),
      color-mix(in srgb, var(--kat-deep) 22%, #030303) !important;
    box-shadow:
      0 0 3px color-mix(in srgb, var(--kat-bright) 72%, transparent),
      0 0 14px color-mix(in srgb, var(--kat-bright) 41%, transparent),
      0 0 23px color-mix(in srgb, var(--kat-bright) 18%, transparent),
      inset 0 0 12px color-mix(in srgb, var(--kat-deep) 20%, transparent) !important;
    text-shadow:
      0 0 7px var(--kat-bright),
      0 0 15px color-mix(in srgb, var(--kat-bright) 72%, transparent),
      0 0 23px color-mix(in srgb, var(--kat-deep) 52%, transparent) !important;
  }

  .mobile-menu-category-list button:nth-child(1) {
    --kat-bright: #ff00cc;
    --kat-deep: #8a2be2;
  }

  .mobile-menu-category-list button:nth-child(2) {
    --kat-bright: #00f0ff;
    --kat-deep: #006d77;
  }

  .mobile-menu-category-list button:nth-child(3) {
    --kat-bright: #ffd84a;
    --kat-deep: #b77900;
  }

  .mobile-menu-category-list button:nth-child(4) {
    --kat-bright: #4d7cfe;
    --kat-deep: #1e3a8a;
  }

  .mobile-menu-category-list button:nth-child(5) {
    --kat-bright: #5cff8a;
    --kat-deep: #087f5b;
  }

  .mobile-menu-category-list button:nth-child(6) {
    --kat-bright: #ff9a3d;
    --kat-deep: #c2410c;
  }

  .mobile-menu-category-list button:nth-child(7) {
    --kat-bright: #ddfbff;
    --kat-deep: #0284c7;
  }

  .mobile-menu-category-list button:nth-child(8) {
    --kat-bright: #4d7cfe;
    --kat-deep: #1e3a8a;
  }

  .mobile-menu-category-list button:nth-child(9) {
    --kat-bright: #ff4da6;
    --kat-deep: #9f125f;
  }

  .mobile-menu-category-list button:nth-child(1),
  .mobile-menu-category-list button:nth-child(3),
  .mobile-menu-category-list button:nth-child(6) {
    border-width: 0.45px !important;
  }

  .mobile-menu-category-list button:nth-child(4) {
    border-width: 0.9px !important;
  }

  .mobile-menu-category-list button:nth-child(4),
  .mobile-menu-category-list button:nth-child(9) {
    box-shadow:
      0 0 4px color-mix(in srgb, var(--kat-bright) 78%, transparent),
      0 0 16px color-mix(in srgb, var(--kat-bright) 48%, transparent),
      0 0 27px color-mix(in srgb, var(--kat-bright) 23%, transparent),
      inset 0 0 12px color-mix(in srgb, var(--kat-deep) 20%, transparent) !important;
  }

  .social-icon {
    border-color: rgba(105, 248, 255, 0.72);
    box-shadow:
      0 0 3px rgba(205, 255, 255, 0.48),
      0 0 11px rgba(0, 240, 255, 0.34),
      0 0 18px rgba(255, 0, 204, 0.11),
      inset 0 0 10px rgba(255, 0, 204, 0.08);
  }
}

@media (min-width: 801px) {
  .video-card {
    position: relative;
    z-index: 0;
    isolation: isolate;
  }

  .video-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 27px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border-radius: 28px;
    clip-path: inset(0 round 28px);
    background:
      radial-gradient(
          circle at 10px 10px,
          rgba(255, 240, 255, 0.82) 0%,
          rgba(255, 66, 208, 0.66) 17%,
          rgba(159, 84, 255, 0.38) 39%,
          transparent 68%
        )
        top left / 40px 40px no-repeat,
      radial-gradient(
          circle at calc(100% - 10px) 10px,
          rgba(245, 255, 255, 0.82) 0%,
          rgba(0, 240, 255, 0.62) 17%,
          rgba(116, 80, 255, 0.36) 39%,
          transparent 68%
        )
        top right / 40px 40px no-repeat,
      radial-gradient(
          circle at 10px calc(100% - 10px),
          rgba(255, 235, 255, 0.74) 0%,
          rgba(159, 84, 255, 0.57) 18%,
          rgba(255, 66, 208, 0.32) 40%,
          transparent 68%
        )
        bottom left / 40px 40px no-repeat,
      radial-gradient(
          circle at calc(100% - 10px) calc(100% - 10px),
          rgba(240, 255, 255, 0.74) 0%,
          rgba(0, 240, 255, 0.54) 18%,
          rgba(116, 80, 255, 0.32) 40%,
          transparent 68%
        )
        bottom right / 40px 40px no-repeat;
    pointer-events: none;
  }

  .video-box::after {
    padding: 0.85px;
    border-radius: 18px;
  }

  .video-box {
    border-radius: 18px;
    box-shadow:
      0 0 4px rgba(255, 255, 255, 0.64),
      -4px -2px 11px rgba(255, 66, 208, 0.72),
      4px -2px 11px rgba(0, 240, 255, 0.68),
      -11px 0 27px rgba(255, 0, 204, 0.48),
      11px 0 27px rgba(0, 240, 255, 0.44),
      0 8px 34px rgba(138, 43, 226, 0.48),
      0 0 52px rgba(138, 43, 226, 0.3);
  }

  .video-box::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 1px;
    border-radius: 17px;
    background-image:
      linear-gradient(
          90deg,
          rgba(255, 66, 208, 0.88) 0%,
          rgba(159, 84, 255, 0.58) 42%,
          rgba(159, 84, 255, 0) 100%
        ),
      linear-gradient(
          270deg,
          rgba(0, 240, 255, 0.84) 0%,
          rgba(116, 80, 255, 0.56) 42%,
          rgba(116, 80, 255, 0) 100%
        ),
      linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 66, 208, 0.5) 24%,
        rgba(250, 255, 255, 0.8) 50%,
        rgba(0, 240, 255, 0.48) 76%,
        transparent 100%
      ),
      linear-gradient(
        270deg,
        transparent 0%,
        rgba(0, 240, 255, 0.46) 24%,
        rgba(250, 255, 255, 0.74) 50%,
        rgba(255, 66, 208, 0.48) 76%,
        transparent 100%
      );
    background-size:
      8.5% 100%,
      8.5% 100%,
      44% 3%,
      44% 3%;
    background-position:
      left center,
      right center,
      -55% top,
      155% bottom;
    background-repeat: no-repeat;
    box-shadow:
      inset 18px 0 22px -19px rgba(255, 66, 208, 0.95),
      inset -18px 0 22px -19px rgba(0, 240, 255, 0.92);
    mix-blend-mode: screen;
    animation: video-horizontal-glow 9s ease-in-out infinite;
    pointer-events: none;
  }

  .video-box iframe {
    border-radius: 17px;
    clip-path: inset(0 round 17px);
  }

  .hero-layout .video-card h3 {
    margin-bottom: 13px;
  }

  .hero-tagline {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.52),
      0 0 20px rgba(255, 0, 204, 0.82),
      0 0 38px rgba(138, 43, 226, 0.64),
      0 0 52px rgba(0, 240, 255, 0.2);
  }

  .hero-city {
    font-size: 50px;
  }

  .hero-region-name {
    font-size: 18px;
  }

  .hero-description-line {
    display: block;
    white-space: nowrap;
  }

  .hero-description {
    color: #ff4b55;
    font-size: 27px;
    line-height: 1.25;
    text-shadow:
      0 0 5px rgba(255, 225, 228, 0.34),
      0 0 12px rgba(255, 75, 85, 0.56),
      0 0 21px rgba(255, 75, 85, 0.22);
  }

  .home-navbar .home-nav-actions .post-btn:not(.home-profile-btn) {
    box-shadow:
      0 0 4px rgba(205, 255, 255, 0.66),
      0 0 13px rgba(0, 240, 255, 0.42),
      0 0 22px rgba(0, 240, 255, 0.16);
  }

  .home-navbar .home-nav-actions .home-profile-btn {
    box-shadow:
      0 0 4px rgba(255, 220, 249, 0.64),
      0 0 13px rgba(255, 59, 219, 0.42),
      0 0 22px rgba(255, 0, 204, 0.16);
  }

  .desktop-home-cats .home-section {
    position: relative;
    isolation: isolate;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
      0 0 4px rgba(255, 255, 255, 0.52),
      0 0 14px rgba(255, 255, 255, 0.16),
      0 0 23px rgba(255, 0, 204, 0.14),
      0 0 38px rgba(0, 240, 255, 0.08);
  }

  .desktop-home-cats .home-section::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 2px 0;
    border-radius: inherit;
    clip-path: inset(0 round 24px 24px 6px 6px);
    background-image:
      linear-gradient(
          180deg,
          transparent 0%,
          rgba(255, 66, 208, 0.62) 20%,
          rgba(159, 84, 255, 0.46) 50%,
          rgba(0, 240, 255, 0.52) 80%,
          transparent 100%
        ),
      linear-gradient(
          180deg,
          transparent 0%,
          rgba(0, 240, 255, 0.56) 20%,
          rgba(116, 80, 255, 0.44) 50%,
          rgba(255, 66, 208, 0.58) 80%,
          transparent 100%
        ),
      linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 66, 208, 0.08) 28%,
        rgba(245, 255, 255, 0.13) 50%,
        rgba(0, 240, 255, 0.08) 72%,
        transparent 100%
      ),
      linear-gradient(
        270deg,
        transparent 0%,
        rgba(0, 240, 255, 0.07) 28%,
        rgba(245, 255, 255, 0.12) 50%,
        rgba(255, 66, 208, 0.07) 72%,
        transparent 100%
      );
    background-size:
      7px 82%,
      7px 82%,
      58% 0.75px,
      58% 0.75px;
    background-position:
      0% -120%,
      100% 220%,
      -70% 0%,
      170% 100%;
    background-repeat: no-repeat;
    filter: blur(2.8px);
    mix-blend-mode: screen;
    animation: card-edge-neon-drift 18s ease-in-out infinite;
    will-change: background-position;
    pointer-events: none;
  }

  .desktop-home-cats .home-links.home-link-list a {
    filter:
      drop-shadow(0 0 3px rgba(255, 255, 255, 0.44))
      drop-shadow(0 0 8px rgba(0, 240, 255, 0.18));
  }

  .social-icon {
    border-color: rgba(120, 250, 255, 0.74);
    box-shadow:
      0 0 3px rgba(215, 255, 255, 0.48),
      0 0 11px rgba(0, 240, 255, 0.34),
      0 0 18px rgba(255, 0, 204, 0.1),
      inset 0 0 10px rgba(255, 0, 204, 0.08);
  }
}

@keyframes mobile-category-image-neon-breath {
  0%,
  100% {
    filter:
      brightness(1)
      drop-shadow(0 0 3px var(--image-neon-close))
      drop-shadow(0 0 9px var(--image-neon-primary))
      drop-shadow(0 0 16px var(--image-neon-secondary));
  }

  50% {
    filter:
      brightness(1.035)
      drop-shadow(0 0 6px var(--image-neon-close))
      drop-shadow(0 0 16px var(--image-neon-primary))
      drop-shadow(0 0 27px var(--image-neon-secondary));
  }
}

/* ==========================================================
   v115 — FINAL CRISP KAT TYPE + ORGANIC ROCK HIGHLIGHTS
========================================================== */

/*
  Do not filter the entire image-backed kat card. A parent filter rasterizes
  the lettering with the background and makes the type look like a screenshot.
*/
.all-kats-card,
.all-kats-card:hover {
  filter: none;
}

.all-kats-card:hover {
  box-shadow:
    0 0 4px rgba(240, 255, 255, 0.72),
    0 0 17px var(--all-kats-glow),
    0 0 30px rgba(255, 0, 204, 0.24);
}

.all-kats-card strong,
.all-kats-card small {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  backface-visibility: hidden;
}

.all-kats-card strong {
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.94),
    0 0 5px rgba(255, 255, 255, 0.62),
    0 0 9px var(--all-kats-glow);
}

.all-kats-card small {
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.9),
    0 0 5px var(--all-kats-glow);
}

/*
  Featured subkats now behave like aged, dark club signs: textured black
  centers, restrained colored tubes, and a small halo instead of flat blocks.
*/
.category-hub-subcat.hub-feature-pink,
.category-hub-subcat.hub-feature-green,
.category-hub-subcat.hub-feature-gold,
.category-hub-subcat.hub-feature-blue {
  --hub-rock-light: rgba(255, 255, 255, 0.72);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-width: 1px;
  background-color: #050607;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      transparent 34%,
      rgba(0, 0, 0, 0.2)
    ),
    url("/images/category-button-neon-texture.webp?v=1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.88),
    0 0 6px var(--hub-rock-glow);
  box-shadow:
    0 0 2px var(--hub-rock-light),
    0 0 10px var(--hub-rock-glow),
    0 0 20px var(--hub-rock-fog),
    inset 0 0 13px rgba(0, 0, 0, 0.48);
}

.category-hub-subcat.hub-feature-pink {
  --hub-rock-glow: rgba(255, 45, 205, 0.62);
  --hub-rock-fog: rgba(255, 0, 180, 0.18);
  color: #fff8fd;
  border-color: rgba(255, 91, 213, 0.82);
}

.category-hub-subcat.hub-feature-green {
  --hub-rock-glow: rgba(84, 255, 128, 0.58);
  --hub-rock-fog: rgba(36, 217, 91, 0.16);
  color: #f7fff9;
  border-color: rgba(113, 255, 148, 0.8);
}

.category-hub-subcat.hub-feature-gold {
  --hub-rock-glow: rgba(255, 205, 59, 0.62);
  --hub-rock-fog: rgba(255, 166, 0, 0.16);
  color: #fffdf5;
  border-color: rgba(255, 220, 103, 0.84);
}

.category-hub-subcat.hub-feature-blue {
  --hub-rock-glow: rgba(35, 233, 255, 0.6);
  --hub-rock-fog: rgba(0, 183, 255, 0.17);
  color: #f7feff;
  border-color: rgba(98, 242, 255, 0.82);
}

.category-hub-subcat.hub-feature-pink:hover,
.category-hub-subcat.hub-feature-green:hover,
.category-hub-subcat.hub-feature-gold:hover,
.category-hub-subcat.hub-feature-blue:hover {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 3px rgba(255, 255, 255, 0.7),
    0 0 13px var(--hub-rock-glow),
    0 0 24px var(--hub-rock-fog),
    inset 0 0 12px rgba(255, 255, 255, 0.055);
}

@media (max-width: 800px) {
  .geo-market-button {
    min-height: 56px;
    padding: 9px 8px;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.05;
    letter-spacing: 0.015em;
  }

  .geo-expandable-panel > summary,
  .nearby-market-panel > summary {
    min-height: 56px;
    padding: 9px 8px;
    font-size: clamp(19px, 5.3vw, 23px);
    line-height: 1;
  }

  .major-market-panel > summary {
    font-size: clamp(16px, 4.45vw, 20px);
    line-height: 1.05;
  }
}

/* ==========================================================
   v116 — FEATURED SUBKAT EDGE BALANCE
========================================================== */

/* PC: broader neon atmosphere so featured signs separate from the dark page. */
@media (min-width: 801px) {
  .category-hub-subcat.hub-feature-pink,
  .category-hub-subcat.hub-feature-green,
  .category-hub-subcat.hub-feature-gold,
  .category-hub-subcat.hub-feature-blue {
    box-shadow:
      0 0 3px rgba(255, 255, 255, 0.54),
      0 0 13px var(--hub-rock-glow),
      0 0 27px var(--hub-rock-fog),
      0 0 39px var(--hub-rock-fog),
      inset 0 0 13px rgba(0, 0, 0, 0.43);
  }

  .category-hub-subcat.hub-feature-pink:hover,
  .category-hub-subcat.hub-feature-green:hover,
  .category-hub-subcat.hub-feature-gold:hover,
  .category-hub-subcat.hub-feature-blue:hover {
    box-shadow:
      0 0 4px rgba(255, 255, 255, 0.76),
      0 0 17px var(--hub-rock-glow),
      0 0 32px var(--hub-rock-fog),
      0 0 47px var(--hub-rock-fog),
      inset 0 0 12px rgba(255, 255, 255, 0.055);
  }
}

/* Mobile: replace the thick colored tube with a fine edge and diffused fog. */
@media (max-width: 800px) {
  .mobile-subcat-card[class*="mobile-feature"] {
    --mobile-feature-glow: rgba(0, 240, 255, 0.54);
    --mobile-feature-fog: rgba(0, 240, 255, 0.18);
    border-width: 0.6px;
    box-shadow:
      0 0 2px rgba(255, 255, 255, 0.42),
      0 0 9px var(--mobile-feature-glow),
      0 0 19px var(--mobile-feature-fog),
      inset 0 0 10px rgba(255, 255, 255, 0.035);
  }

  .mobile-feature-rest,
  .mobile-feature-cars,
  .mobile-feature-isaw {
    --mobile-feature-glow: rgba(255, 48, 207, 0.56);
    --mobile-feature-fog: rgba(255, 0, 181, 0.18);
  }

  .mobile-feature-labor,
  .mobile-feature-moto {
    --mobile-feature-glow: rgba(91, 255, 132, 0.52);
    --mobile-feature-fog: rgba(45, 225, 99, 0.16);
  }

  .mobile-feature-skilled,
  .mobile-feature-rvs,
  .mobile-feature-musicians {
    --mobile-feature-glow: rgba(255, 211, 68, 0.55);
    --mobile-feature-fog: rgba(255, 177, 23, 0.17);
  }

  .mobile-feature-office {
    --mobile-feature-glow: rgba(53, 236, 255, 0.54);
    --mobile-feature-fog: rgba(0, 190, 255, 0.17);
  }

  .category-hub-subcat.hub-feature-pink,
  .category-hub-subcat.hub-feature-green,
  .category-hub-subcat.hub-feature-gold,
  .category-hub-subcat.hub-feature-blue {
    border-width: 0.6px;
    box-shadow:
      0 0 2px rgba(255, 255, 255, 0.38),
      0 0 8px var(--hub-rock-glow),
      0 0 18px var(--hub-rock-fog),
      inset 0 0 11px rgba(0, 0, 0, 0.45);
  }
}

/* ==========================================================
   v118 — POST TYPE ROCK MANIFESTO
========================================================== */

.post-type-rock-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 0, 204, 0.17), transparent 29%),
    radial-gradient(circle at 13% 47%, rgba(0, 240, 255, 0.08), transparent 31%),
    radial-gradient(circle at 87% 65%, rgba(255, 43, 67, 0.08), transparent 30%),
    #020202;
}

.post-type-rock-header {
  display: flex;
  justify-content: center;
  padding: 22px 16px 9px;
}

.post-type-rock-brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
}

.post-type-rock-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 0, 204, 0.7))
    drop-shadow(0 0 14px rgba(0, 240, 255, 0.34));
}

.post-type-rock-brand span {
  display: flex;
  flex-direction: column;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.91;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 4px #fff,
    0 0 12px #ff00cc,
    0 0 25px rgba(138, 43, 226, 0.88);
}

.post-type-rock-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 4px auto 48px;
}

.post-type-rock-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.post-type-rock-location {
  margin-bottom: 25px;
  text-align: center;
}

.post-type-rock-location p {
  margin: 0 0 3px;
  color: #ffcc33;
  font-family: "Lobster Two", cursive;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.72),
    0 0 16px rgba(255, 204, 51, 0.9);
}

.post-type-rock-location span {
  color: #ffcc33;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(14px, 1.7vw, 21px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 204, 51, 0.72);
}

.post-type-rock-intro {
  margin: 0 auto 25px;
  text-align: center;
}

.post-type-rock-intro > p {
  margin: 0 0 3px;
  color: #ffcc33;
  font-family: "Patrick Hand SC", cursive;
  font-size: 24px;
  text-shadow: 0 0 9px rgba(255, 204, 51, 0.66);
}

.post-type-rock-intro h1 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Metal Mania", "Orbitron", sans-serif;
  font-size: clamp(43px, 7vw, 76px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow:
    0 0 3px #fff,
    0 0 13px rgba(255, 0, 204, 0.9),
    0 0 27px rgba(0, 240, 255, 0.42);
}

.post-type-rock-intro > span {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 22px;
}

.post-type-rock-form {
  width: 100%;
}

.post-type-rock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.post-type-kat-card {
  --post-kat-glow: rgba(0, 215, 255, 0.54);
  --post-kat-fog: rgba(0, 104, 255, 0.2);
  position: relative;
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(180, 240, 255, 0.5);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 33%),
    rgba(7, 7, 9, 0.96);
  box-shadow:
    0 0 3px rgba(255, 255, 255, 0.36),
    0 0 15px var(--post-kat-glow),
    0 0 31px var(--post-kat-fog),
    inset 0 0 25px rgba(0, 0, 0, 0.56);
}

.post-type-kat-wide {
  grid-column: 1 / -1;
}

.post-type-kat-card h2 {
  width: min(100%, 430px);
  min-height: 70px;
  margin: 0 auto 20px;
  padding: 10px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background-color: #02101a;
  background-image: url("/images/post-ad-rock-sign-v1.webp?v=1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-family: "Metal Mania", "Orbitron", sans-serif;
  font-size: clamp(31px, 4vw, 45px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.98),
    0 0 8px var(--post-kat-glow),
    0 0 16px var(--post-kat-fog);
  filter:
    drop-shadow(0 0 4px rgba(235, 255, 255, 0.5))
    drop-shadow(0 0 14px var(--post-kat-glow));
}

.post-type-kat-card h2 small {
  margin-top: 5px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(10px, 1.4vw, 15px);
}

.post-type-kat-crimson {
  --post-kat-glow: rgba(255, 49, 74, 0.58);
  --post-kat-fog: rgba(178, 0, 35, 0.21);
  border-color: rgba(255, 104, 124, 0.54);
}

.post-type-kat-crimson h2 {
  background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1");
}

.post-type-kat-gold {
  --post-kat-glow: rgba(255, 204, 51, 0.58);
  --post-kat-fog: rgba(255, 136, 0, 0.19);
  border-color: rgba(255, 220, 103, 0.58);
}

.post-type-kat-gold h2 {
  background-image: url("/images/my-music-rock-sign-v1.webp?v=1");
}

.post-type-kat-world {
  --post-kat-glow: rgba(0, 213, 255, 0.58);
  --post-kat-fog: rgba(255, 45, 151, 0.2);
  border-color: rgba(160, 235, 255, 0.58);
}

.post-type-kat-world h2 {
  min-height: 91px;
  background-image: url("/images/category-wwb-neon-split-v1.webp?v=1");
}

.post-type-kat-pink {
  --post-kat-glow: rgba(255, 45, 218, 0.62);
  --post-kat-fog: rgba(146, 0, 255, 0.23);
  border-color: rgba(255, 113, 225, 0.6);
}

.post-type-kat-pink h2 {
  background-image: url("/images/create-profile-rock-sign-v1.webp?v=1");
}

.post-type-manifesto {
  flex: 1;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Patrick Hand SC", cursive;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.22;
  text-align: center;
}

.post-type-manifesto p {
  margin: 0 0 11px;
}

.post-type-manifesto strong,
.post-type-manifesto em {
  color: #ffda58;
  font-family: "Metal Mania", "Patrick Hand SC", cursive;
  font-size: 1.2em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.9),
    0 0 8px rgba(255, 204, 51, 0.74);
}

.post-type-fnl-manifesto em {
  color: #fff;
  text-shadow:
    0 0 2px #fff,
    0 0 10px rgba(255, 0, 204, 0.92),
    0 0 20px rgba(146, 0, 255, 0.58);
}

.post-type-wwb-roll {
  max-width: 1000px;
  margin: 12px auto 15px;
  color: #c9fbff;
  font-family: "Agdasima", Arial, sans-serif;
  font-size: 0.84em;
  letter-spacing: 0.035em;
  text-shadow: 0 0 7px rgba(0, 220, 255, 0.58);
}

.post-type-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.post-type-choice-row-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-type-rock-choice {
  position: relative;
  min-height: 50px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(142, 243, 255, 0.62);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(0, 240, 255, 0.1), transparent 48%, rgba(255, 0, 204, 0.08)),
    rgba(1, 10, 14, 0.88);
  box-shadow:
    0 0 3px rgba(255, 255, 255, 0.25),
    0 0 11px var(--post-kat-glow),
    inset 0 0 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.84),
    0 0 7px var(--post-kat-glow);
  transition: transform 0.17s ease, filter 0.17s ease;
}

.post-type-rock-choice:hover {
  filter: brightness(1.24);
  transform: translateY(-2px);
}

.post-type-rock-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.post-type-rock-choice-pink {
  width: min(100%, 460px);
  margin: 0 auto;
}

@media (max-width: 800px) {
  .post-type-rock-header {
    padding-top: 16px;
  }

  .post-type-rock-brand {
    gap: 10px;
  }

  .post-type-rock-brand img {
    width: 63px;
    height: 63px;
  }

  .post-type-rock-brand span {
    font-size: 29px;
  }

  .post-type-rock-shell {
    width: min(100% - 18px, 570px);
    margin-bottom: 28px;
  }

  .post-type-rock-location p {
    font-size: 39px;
  }

  .post-type-rock-location span {
    font-size: 15px;
  }

  .post-type-rock-intro h1 {
    font-size: 45px;
  }

  .post-type-rock-intro > span {
    font-size: 19px;
  }

  .post-type-rock-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .post-type-kat-wide {
    grid-column: auto;
  }

  .post-type-kat-card {
    padding: 18px 13px 20px;
    border-radius: 20px;
  }

  .post-type-kat-card h2 {
    width: min(100%, 390px);
    min-height: 67px;
    margin-bottom: 17px;
    padding: 9px 21px;
    font-size: 34px;
  }

  .post-type-kat-world h2 {
    min-height: 86px;
  }

  .post-type-kat-card h2 small {
    font-size: 11px;
  }

  .post-type-manifesto {
    font-size: 20px;
  }

  .post-type-choice-row,
  .post-type-choice-row-four {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .post-type-rock-choice {
    min-height: 48px;
    font-size: 12px;
  }
}

/* ==========================================================
   v119 — POST FLOW ALIGNMENT POLISH
========================================================== */

@media (min-width: 801px) {
  .post-type-cribs-card {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 11px);
  }
}

@media (max-width: 800px) {
  .post-type-kat-pink h2 {
    width: calc(100% - 20px);
    min-height: 82px;
    padding-inline: 42px;
    line-height: 1.02;
  }

  .job-category-option {
    position: relative;
    justify-content: center;
    padding-inline: 38px;
    text-align: center;
  }

  .job-category-option input {
    position: absolute;
    left: 14px;
    margin: 0;
  }

  .job-category-option span {
    width: 100%;
    text-align: center;
  }
}

/* Mobile image-backed category entrances */
@media (max-width: 800px) {
  .mobile-menu-category-list button {
    --image-neon-close: rgba(235, 255, 255, 0.5);
    --image-neon-primary: rgba(0, 240, 255, 0.42);
    --image-neon-secondary: rgba(255, 0, 204, 0.25);
    color: #ffffff !important;
    border: 1px solid rgba(180, 240, 255, 0.64) !important;
    background-color: #050607 !important;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
      url("/images/category-button-neon-texture.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    box-shadow:
      0 0 4px rgba(225, 255, 255, 0.38),
      0 0 13px rgba(0, 240, 255, 0.28),
      0 0 23px rgba(255, 0, 204, 0.16),
      inset 0 0 10px rgba(0, 0, 0, 0.36) !important;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.96),
      0 0 9px rgba(0, 240, 255, 0.78),
      0 0 17px rgba(159, 84, 255, 0.62),
      0 0 25px rgba(255, 66, 208, 0.34) !important;
    animation: mobile-category-image-neon-breath 3.8s ease-in-out infinite;
    will-change: filter;
  }

  .mobile-menu-category-list button:nth-child(1),
  .mobile-menu-category-list button:nth-child(3),
  .mobile-menu-category-list button:nth-child(5),
  .mobile-menu-category-list button:nth-child(7) {
    --image-neon-close: rgba(255, 235, 242, 0.5);
    --image-neon-primary: rgba(255, 48, 96, 0.46);
    --image-neon-secondary: rgba(255, 0, 153, 0.3);
  }

  .mobile-menu-category-list button:last-child {
    --image-neon-close: rgba(255, 235, 242, 0.5);
    --image-neon-primary: rgba(255, 48, 96, 0.46);
    --image-neon-secondary: rgba(255, 0, 153, 0.3);
    border-color: rgba(255, 92, 142, 0.72) !important;
    background-color: #080203 !important;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.16)),
      url("/images/category-button-fnl-texture.webp?v=1") !important;
    box-shadow:
      0 0 4px rgba(255, 225, 235, 0.38),
      0 0 14px rgba(255, 48, 96, 0.34),
      0 0 24px rgba(255, 0, 153, 0.2),
      inset 0 0 10px rgba(0, 0, 0, 0.34) !important;
    text-shadow:
      0 0 3px rgba(255, 245, 248, 0.98),
      0 0 9px rgba(255, 70, 112, 0.84),
      0 0 18px rgba(255, 0, 153, 0.64),
      0 0 27px rgba(124, 0, 40, 0.5) !important;
  }

  .mobile-menu-category-list button:nth-child(2) {
    animation-delay: -0.45s;
  }

  .mobile-menu-category-list button:nth-child(3) {
    animation-delay: -0.9s;
  }

  .mobile-menu-category-list button:nth-child(4) {
    animation-delay: -1.35s;
  }

  .mobile-menu-category-list button:nth-child(5) {
    animation-delay: -1.8s;
  }

  .mobile-menu-category-list button:nth-child(6) {
    animation-delay: -2.25s;
  }

  .mobile-menu-category-list button:nth-child(7) {
    animation-delay: -2.7s;
  }

  .mobile-menu-category-list button:nth-child(8) {
    animation-delay: -3.15s;
  }

  .mobile-menu-category-list button:nth-child(9) {
    animation-delay: -3.6s;
  }

  .mobile-menu-category-list button:active {
    transform: scale(0.985);
  }
}

/* v62 — compact image-backed category pills for the desktop landing page */
@media (min-width: 801px) {
  .desktop-home-cats .home-section h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 230px);
    min-height: 42px;
    margin: 0 auto 12px;
    padding: 7px 16px;
    color: #fff;
    border: 1px solid rgba(180, 240, 255, 0.56);
    border-radius: 999px;
    background-color: #050607;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.18)),
      url("/images/category-button-neon-texture.webp?v=1");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow:
      0 0 3px rgba(225, 255, 255, 0.34),
      0 0 10px rgba(0, 240, 255, 0.24),
      0 0 18px rgba(255, 0, 204, 0.12),
      inset 0 0 8px rgba(0, 0, 0, 0.32);
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.94),
      0 0 8px rgba(0, 240, 255, 0.68),
      0 0 14px rgba(159, 84, 255, 0.48),
      0 0 20px rgba(255, 66, 208, 0.25);
  }

  .desktop-home-cats .friends-love-section h2 {
    border-color: rgba(255, 92, 142, 0.68);
    background-color: #080203;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.16)),
      url("/images/category-button-fnl-texture.webp?v=1");
    box-shadow:
      0 0 3px rgba(255, 222, 232, 0.34),
      0 0 11px rgba(255, 38, 99, 0.32),
      0 0 19px rgba(180, 0, 52, 0.18),
      inset 0 0 8px rgba(0, 0, 0, 0.34);
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.96),
      0 0 8px rgba(255, 70, 130, 0.82),
      0 0 15px rgba(255, 0, 76, 0.58),
      0 0 21px rgba(145, 0, 45, 0.34);
  }

  .desktop-home-cats #home-category-vehicles h2 {
    min-height: 54px;
  }

  .desktop-home-cats #home-category-vehicles .category-label-main {
    font-size: 20px;
  }

  .desktop-home-cats #home-category-vehicles .category-label-detail {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0.5px;
  }

  /* v63 — wider hero pills and stronger edge neon for WWB + Friends N' Love */
  .desktop-home-cats #home-category-vehicles h2,
  .desktop-home-cats .friends-love-section h2 {
    width: min(100%, 270px);
  }

  .desktop-home-cats #home-category-vehicles h2 {
    box-shadow:
      0 0 3px rgba(235, 255, 255, 0.58),
      0 0 9px rgba(0, 240, 255, 0.48),
      0 0 17px rgba(105, 80, 255, 0.34),
      0 0 25px rgba(255, 0, 204, 0.20),
      inset 0 0 8px rgba(0, 0, 0, 0.30);
  }

  .desktop-home-cats .friends-love-section h2 {
    box-shadow:
      0 0 3px rgba(255, 238, 244, 0.60),
      0 0 10px rgba(255, 63, 126, 0.54),
      0 0 18px rgba(255, 0, 76, 0.38),
      0 0 27px rgba(176, 0, 61, 0.24),
      inset 0 0 8px rgba(0, 0, 0, 0.32);
  }

  /* v64 — preserve WWB's sculpted corners and brighten the image-pill aura */
  .desktop-home-cats .home-section h2 {
    box-shadow:
      0 0 4px rgba(235, 255, 255, 0.42),
      0 0 12px rgba(0, 240, 255, 0.31),
      0 0 21px rgba(118, 75, 255, 0.20),
      0 0 29px rgba(255, 0, 204, 0.12),
      inset 0 0 8px rgba(0, 0, 0, 0.30);
  }

  .desktop-home-cats #home-category-vehicles h2 {
    width: min(100%, 320px);
    box-shadow:
      0 0 4px rgba(238, 255, 255, 0.68),
      0 0 12px rgba(0, 240, 255, 0.58),
      0 0 21px rgba(105, 80, 255, 0.42),
      0 0 31px rgba(255, 0, 204, 0.25),
      inset 0 0 8px rgba(0, 0, 0, 0.28);
  }

  .desktop-home-cats .friends-love-section h2 {
    box-shadow:
      0 0 4px rgba(255, 238, 244, 0.68),
      0 0 13px rgba(255, 63, 126, 0.62),
      0 0 22px rgba(255, 0, 76, 0.44),
      0 0 31px rgba(176, 0, 61, 0.27),
      inset 0 0 8px rgba(0, 0, 0, 0.30);
  }
}

/* v65 — physical rock-sign image plates for Find Weed and My Music */
.weed-link,
.music-link {
  min-height: 64px;
  border: 0 !important;
  border-radius: 999px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  font-family: "Metal Mania", "Patrick Hand SC", cursive !important;
  font-size: clamp(27px, 2vw, 34px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 1.2px !important;
}

.weed-link {
  gap: 12px;
  color: #effff2 !important;
  background-color: #031008 !important;
  background-image: url("/images/find-weed-rock-sign-v1.webp?v=1") !important;
  box-shadow:
    0 0 5px rgba(225, 255, 231, 0.48),
    0 0 15px rgba(68, 255, 108, 0.52),
    0 0 29px rgba(16, 187, 66, 0.30) !important;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.98),
    0 0 9px rgba(100, 255, 133, 0.90),
    0 0 18px rgba(25, 220, 76, 0.62) !important;
}

.weed-link .weed-icon {
  width: 34px;
  height: 34px;
  fill: #dfffe6;
  stroke: #dfffe6;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 8px rgba(57, 255, 105, 0.88));
}

.music-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff5bd !important;
  background-color: #241200 !important;
  background-image: url("/images/my-music-rock-sign-v1.webp?v=1") !important;
  box-shadow:
    0 0 5px rgba(255, 250, 217, 0.58),
    0 0 16px rgba(255, 210, 55, 0.66),
    0 0 31px rgba(255, 160, 0, 0.34) !important;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.98),
    0 0 9px rgba(255, 226, 96, 0.92),
    0 0 19px rgba(255, 170, 0, 0.66) !important;
}

.music-link::after {
  content: " ♫";
  font-family: "Metal Mania", "Patrick Hand SC", cursive;
}

@media (max-width: 800px) {
  .weed-link,
  .music-link {
    min-height: 72px;
    padding: 10px 24px !important;
    font-size: clamp(31px, 9vw, 40px) !important;
    letter-spacing: 1.4px !important;
  }

  .weed-link .weed-icon {
    width: 39px;
    height: 39px;
  }
}

/* v67 — physical rock-sign image plates for the two primary LP actions */
.home-navbar .home-nav-actions .post-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px;
  padding: 8px 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #effcff !important;
  background-color: #02101a !important;
  background-image: url("/images/post-ad-rock-sign-v1.webp?v=1") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  font-family: "Metal Mania", "Orbitron", Arial, sans-serif !important;
  font-size: clamp(21px, 1.65vw, 27px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 1.1px !important;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.98),
    0 0 9px rgba(77, 227, 255, 0.94),
    0 0 18px rgba(0, 157, 255, 0.70) !important;
  box-shadow:
    0 0 5px rgba(224, 252, 255, 0.58),
    0 0 16px rgba(0, 213, 255, 0.62),
    0 0 30px rgba(0, 104, 255, 0.34) !important;
}

.home-navbar .home-nav-actions .home-profile-btn {
  color: #fff0fc !important;
  background-color: #180019 !important;
  background-image: url("/images/create-profile-rock-sign-v1.webp?v=1") !important;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.98),
    0 0 9px rgba(255, 102, 232, 0.96),
    0 0 18px rgba(255, 0, 204, 0.72) !important;
  box-shadow:
    0 0 5px rgba(255, 225, 250, 0.60),
    0 0 16px rgba(255, 45, 218, 0.66),
    0 0 31px rgba(146, 0, 255, 0.38) !important;
}

@media (max-width: 800px) {
  .home-navbar .home-nav-actions {
    gap: 9px;
  }

  .home-navbar .home-nav-actions .post-btn {
    min-height: 60px;
    padding: 9px 22px !important;
    font-size: clamp(27px, 7.6vw, 34px) !important;
    letter-spacing: 1.25px !important;
  }
}

/* v68 — reserve the real height of the new desktop action signs */
@media (min-width: 801px) {
  .home-navbar {
    min-height: 126px;
  }
}

/* v69 — fabricated neon rock signs for every category entrance */
@media (max-width: 800px) {
  .mobile-menu-category-list button {
    --image-neon-close: rgba(230, 252, 255, 0.58);
    --image-neon-primary: rgba(0, 213, 255, 0.54);
    --image-neon-secondary: rgba(0, 104, 255, 0.32);
    border: 0 !important;
    border-radius: 999px !important;
    background-color: #02101a !important;
    background-image: url("/images/post-ad-rock-sign-v1.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    font-family: "Metal Mania", "Orbitron", Arial, sans-serif !important;
    font-weight: 400 !important;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(77, 227, 255, 0.94),
      0 0 18px rgba(0, 157, 255, 0.72) !important;
    box-shadow:
      0 0 5px rgba(224, 252, 255, 0.56),
      0 0 16px rgba(0, 213, 255, 0.58),
      0 0 30px rgba(0, 104, 255, 0.32) !important;
  }

  .mobile-menu-category-list button:nth-child(1),
  .mobile-menu-category-list button:nth-child(3),
  .mobile-menu-category-list button:nth-child(5),
  .mobile-menu-category-list button:nth-child(7) {
    --image-neon-close: rgba(230, 252, 255, 0.58);
    --image-neon-primary: rgba(0, 213, 255, 0.54);
    --image-neon-secondary: rgba(0, 104, 255, 0.32);
  }

  .mobile-menu-category-list button:last-child {
    --image-neon-close: rgba(255, 232, 251, 0.62);
    --image-neon-primary: rgba(255, 45, 218, 0.62);
    --image-neon-secondary: rgba(146, 0, 255, 0.38);
    background-color: #180019 !important;
    background-image: url("/images/create-profile-rock-sign-v1.webp?v=1") !important;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 102, 232, 0.96),
      0 0 18px rgba(255, 0, 204, 0.74) !important;
    box-shadow:
      0 0 5px rgba(255, 225, 250, 0.62),
      0 0 17px rgba(255, 45, 218, 0.68),
      0 0 32px rgba(146, 0, 255, 0.40) !important;
  }
}

@media (min-width: 801px) {
  .desktop-home-cats .home-section h2 {
    min-height: 64px;
    border: 0;
    border-radius: 999px;
    background-color: #02101a;
    background-image: url("/images/post-ad-rock-sign-v1.webp?v=1");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-family: "Metal Mania", "Orbitron", Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(77, 227, 255, 0.92),
      0 0 16px rgba(0, 157, 255, 0.68);
    box-shadow:
      0 0 5px rgba(224, 252, 255, 0.54),
      0 0 15px rgba(0, 213, 255, 0.54),
      0 0 28px rgba(0, 104, 255, 0.30);
  }

  .desktop-home-cats #home-category-workforce h2,
  .desktop-home-cats #home-category-services h2,
  .desktop-home-cats #home-category-vehicles h2,
  .desktop-home-cats #home-category-resumes h2 {
    background-color: #180302;
    background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1");
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 102, 102, 0.94),
      0 0 18px rgba(255, 25, 25, 0.72);
    box-shadow:
      0 0 5px rgba(255, 230, 230, 0.58),
      0 0 16px rgba(255, 47, 47, 0.62),
      0 0 30px rgba(174, 0, 0, 0.36);
  }

  .desktop-home-cats .friends-love-section h2 {
    min-height: 72px;
    background-color: #180019;
    background-image: url("/images/create-profile-rock-sign-v1.webp?v=1");
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 102, 232, 0.96),
      0 0 18px rgba(255, 0, 204, 0.74);
    box-shadow:
      0 0 5px rgba(255, 225, 250, 0.62),
      0 0 17px rgba(255, 45, 218, 0.68),
      0 0 32px rgba(146, 0, 255, 0.40);
  }

  .desktop-home-cats #home-category-vehicles h2 {
    min-height: 86px;
  }

  .desktop-home-cats #home-category-vehicles .category-label-main {
    font-size: 27px;
  }

  .desktop-home-cats #home-category-vehicles .category-label-detail {
    font-size: 13px;
  }
}

/* v70 — mobile crimson category trio + expanded WWB text chamber */
@media (max-width: 800px) {
  .mobile-menu-category-list button:nth-child(1),
  .mobile-menu-category-list button:nth-child(4),
  .mobile-menu-category-list button:nth-child(6) {
    --image-neon-close: rgba(255, 232, 232, 0.60);
    --image-neon-primary: rgba(255, 47, 47, 0.60);
    --image-neon-secondary: rgba(174, 0, 0, 0.36);
    background-color: #180302 !important;
    background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1") !important;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 102, 102, 0.94),
      0 0 18px rgba(255, 25, 25, 0.74) !important;
    box-shadow:
      0 0 5px rgba(255, 230, 230, 0.60),
      0 0 17px rgba(255, 47, 47, 0.66),
      0 0 31px rgba(174, 0, 0, 0.38) !important;
  }

  .mobile-menu-category-list button:nth-child(4) {
    min-height: 220px;
    padding: 34px 26px !important;
  }

  .mobile-menu-category-list button:nth-child(4) .category-label-main {
    font-size: 1.08em;
    line-height: 1;
  }

  .mobile-menu-category-list button:nth-child(4) .category-label-detail {
    margin-top: 8px;
    line-height: 1.05;
  }

  .mobile-menu-category-list button:last-child {
    min-height: 190px;
    padding: 34px 26px !important;
  }

  .mobile-menu-category-list button:last-child .category-label-main {
    line-height: 1.08;
  }
}

/* v72 — inverted crimson/blue category balance for the PC comparison */
@media (min-width: 801px) {
  .desktop-home-cats .home-section h2 {
    background-color: #180302;
    background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1");
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 102, 102, 0.94),
      0 0 18px rgba(255, 25, 25, 0.72);
    box-shadow:
      0 0 5px rgba(255, 230, 230, 0.58),
      0 0 16px rgba(255, 47, 47, 0.62),
      0 0 30px rgba(174, 0, 0, 0.36);
  }

  .desktop-home-cats #home-category-workforce h2,
  .desktop-home-cats #home-category-services h2,
  .desktop-home-cats #home-category-vehicles h2,
  .desktop-home-cats #home-category-resumes h2 {
    background-color: #02101a;
    background-image: url("/images/post-ad-rock-sign-v1.webp?v=1");
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(77, 227, 255, 0.92),
      0 0 16px rgba(0, 157, 255, 0.68);
    box-shadow:
      0 0 5px rgba(224, 252, 255, 0.54),
      0 0 15px rgba(0, 213, 255, 0.54),
      0 0 28px rgba(0, 104, 255, 0.30);
  }

  .desktop-home-cats .friends-love-section h2 {
    background-color: #180019;
    background-image: url("/images/create-profile-rock-sign-v1.webp?v=1");
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 102, 232, 0.96),
      0 0 18px rgba(255, 0, 204, 0.74);
    box-shadow:
      0 0 5px rgba(255, 225, 250, 0.62),
      0 0 17px rgba(255, 45, 218, 0.68),
      0 0 32px rgba(146, 0, 255, 0.40);
  }

  .desktop-home-cats #home-category-vehicles h2 {
    width: min(100%, 340px);
    min-height: 110px;
    padding: 22px 44px;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.74),
      0 0 5px rgba(77, 227, 255, 0.48),
      0 0 10px rgba(0, 157, 255, 0.28);
  }

  .desktop-home-cats #home-category-vehicles .category-label-main {
    font-size: 26px;
  }

  .desktop-home-cats #home-category-vehicles .category-label-detail {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.15;
  }
}

/* v74 — backstage video marquees + mobile rock-control hamburger */
.hero-layout .video-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0 auto 12px;
  padding: 9px 24px;
  color: #f8f3ff;
  border: 0;
  border-radius: 999px;
  background-color: #090712;
  background-image: url("/images/video-heading-rock-sign-v1.webp?v=1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-family: "Metal Mania", "Patrick Hand SC", cursive;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.96),
    0 0 7px rgba(220, 204, 255, 0.76),
    0 0 14px rgba(146, 92, 255, 0.46);
  box-shadow:
    0 0 4px rgba(247, 244, 255, 0.52),
    0 0 13px rgba(176, 132, 255, 0.44),
    0 0 24px rgba(93, 44, 178, 0.26);
}

@media (max-width: 800px) {
  .hero-layout .video-card h3 {
    width: min(100%, 410px);
    min-height: 60px;
    padding: 10px 28px;
    font-size: clamp(19px, 5.6vw, 24px);
  }

  .home-navbar {
    grid-template-columns: 1fr 64px;
  }

  .mobile-menu-toggle {
    width: 62px;
    height: 62px;
    margin-top: 0;
    gap: 6px;
    padding: 16px 15px;
    border: 0;
    border-radius: 13px;
    background-color: #070712;
    background-image: url("/images/mobile-hamburger-rock-housing-v1.webp?v=1");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow:
      0 0 4px rgba(235, 247, 255, 0.54),
      0 0 13px rgba(0, 205, 255, 0.42),
      0 0 23px rgba(173, 49, 255, 0.34),
      0 0 31px rgba(255, 0, 204, 0.16);
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    transform: skewX(-11deg);
    background: #eaffff;
  }

  .mobile-menu-toggle span:nth-child(1) {
    background: #dfffff;
    box-shadow:
      0 0 3px rgba(255, 255, 255, 0.96),
      0 0 8px rgba(0, 225, 255, 0.94),
      0 0 14px rgba(0, 133, 255, 0.62);
  }

  .mobile-menu-toggle span:nth-child(2) {
    background: #f4eaff;
    box-shadow:
      0 0 3px rgba(255, 255, 255, 0.96),
      0 0 8px rgba(179, 113, 255, 0.92),
      0 0 14px rgba(116, 43, 255, 0.58);
  }

  .mobile-menu-toggle span:nth-child(3) {
    background: #ffe4fb;
    box-shadow:
      0 0 3px rgba(255, 255, 255, 0.96),
      0 0 8px rgba(255, 62, 220, 0.92),
      0 0 14px rgba(255, 0, 153, 0.58);
  }
}

/* v75 — compact hamburger, warm accents and restored video-frame clearance */
.hero-left-panel .video-card h3 {
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.96),
    0 0 7px rgba(255, 232, 150, 0.72),
    0 0 14px rgba(255, 204, 51, 0.38);
  box-shadow:
    0 0 4px rgba(255, 250, 224, 0.50),
    0 0 12px rgba(255, 204, 51, 0.30),
    0 0 21px rgba(159, 84, 255, 0.30);
}

@media (min-width: 801px) {
  .hero-left-panel {
    transform: translateY(-10px);
  }

  .hero-right-panel {
    transform: translateY(-16px);
  }

  .video-card::before {
    top: 66px;
  }
}

@media (max-width: 800px) {
  .home-navbar {
    grid-template-columns: 1fr 56px;
  }

  .mobile-menu-toggle {
    width: 54px;
    height: 54px;
    padding: 14px 13px;
    border-radius: 12px;
    box-shadow:
      0 0 3px rgba(255, 251, 228, 0.52),
      0 0 9px rgba(255, 204, 51, 0.34),
      0 0 14px rgba(0, 205, 255, 0.36),
      0 0 23px rgba(173, 49, 255, 0.28),
      0 0 29px rgba(255, 0, 204, 0.12);
  }
}

/* v76 — final micro-spacing, mobile brand centering and Workforce color */
@media (min-width: 801px) {
  .hero-right-panel {
    transform: translateY(-4px);
  }
}

@media (max-width: 800px) {
  .brand-emblem {
    transform: translateX(-10px);
  }

  .mobile-menu-category-list button:nth-child(1) {
    --image-neon-close: rgba(230, 252, 255, 0.58);
    --image-neon-primary: rgba(0, 213, 255, 0.54);
    --image-neon-secondary: rgba(0, 104, 255, 0.32);
    background-color: #02101a !important;
    background-image: url("/images/post-ad-rock-sign-v1.webp?v=1") !important;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(77, 227, 255, 0.94),
      0 0 18px rgba(0, 157, 255, 0.72) !important;
    box-shadow:
      0 0 5px rgba(224, 252, 255, 0.56),
      0 0 16px rgba(0, 213, 255, 0.58),
      0 0 30px rgba(0, 104, 255, 0.32) !important;
  }
}

/* v77 — final warm highlights and mobile wordmark alignment */
.hero-left-panel .video-card h3,
.hero-right-panel .video-card h3 {
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.98),
    0 0 7px rgba(255, 237, 174, 0.78),
    0 0 14px rgba(255, 204, 51, 0.46),
    0 0 20px rgba(159, 84, 255, 0.24);
  box-shadow:
    0 0 4px rgba(255, 251, 230, 0.56),
    0 0 13px rgba(255, 204, 51, 0.38),
    0 0 22px rgba(159, 84, 255, 0.30);
}

@media (max-width: 800px) {
  .site-logo {
    transform: translateX(8px);
  }

  .mobile-menu-toggle {
    box-shadow:
      0 0 4px rgba(255, 252, 232, 0.62),
      0 0 11px rgba(255, 204, 51, 0.50),
      0 0 18px rgba(255, 204, 51, 0.22),
      0 0 15px rgba(0, 205, 255, 0.34),
      0 0 24px rgba(173, 49, 255, 0.26),
      0 0 30px rgba(255, 0, 204, 0.11);
  }
}

/* v78 — secure relay-address reply controls for ad details */
.ad-details-mobile-header {
  position: relative;
}

.relay-reply-widget {
  position: relative;
  text-align: center;
}

.relay-reply-widget-top {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: min(320px, 36vw);
  transform: translate(-50%, -50%);
}

.relay-reply-trigger,
.relay-copy-button {
  appearance: none;
  cursor: pointer;
  border-radius: 10px;
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.relay-reply-trigger {
  width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff3bd;
  border: 1px solid rgba(255, 214, 71, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 46%),
    rgba(18, 13, 3, 0.96);
  font-size: 16px;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.92),
    0 0 9px rgba(255, 204, 51, 0.82);
  box-shadow:
    0 0 4px rgba(255, 248, 212, 0.62),
    0 0 13px rgba(255, 204, 51, 0.50),
    0 0 22px rgba(255, 0, 204, 0.16);
}

.relay-reply-trigger:hover,
.relay-copy-button:hover {
  transform: translateY(-1px);
}

.relay-reply-trigger:disabled {
  cursor: wait;
  opacity: 0.72;
}

.relay-address-panel {
  position: relative;
  margin-top: 12px;
  padding: 16px;
  overflow: hidden;
  color: #f7fcff;
  border: 1px solid rgba(0, 240, 255, 0.68);
  border-radius: 13px;
  background:
    radial-gradient(circle at top, rgba(159, 84, 255, 0.15), transparent 62%),
    rgba(5, 7, 10, 0.98);
  box-shadow:
    0 0 4px rgba(226, 255, 255, 0.54),
    0 0 15px rgba(0, 240, 255, 0.34),
    0 0 26px rgba(255, 0, 204, 0.18);
}

.relay-reply-widget-top .relay-address-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(520px, 72vw);
  transform: translateX(-50%);
}

.relay-address-panel[hidden] {
  display: none !important;
}

.relay-address-label {
  margin: 0 0 9px;
  color: #ffdb63;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.relay-address-value {
  display: block;
  width: 100%;
  margin-bottom: 13px;
  padding: 11px 12px;
  overflow-wrap: anywhere;
  color: #dfffff;
  border: 1px solid rgba(125, 247, 255, 0.48);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  font-family: "Courier New", monospace;
  font-size: 15px;
  line-height: 1.35;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.72),
    0 0 9px rgba(0, 240, 255, 0.56);
}

.relay-copy-button {
  min-height: 40px;
  padding: 9px 15px;
  color: #eaffff;
  border: 1px solid rgba(0, 240, 255, 0.82);
  background: rgba(0, 22, 27, 0.92);
  font-size: 13px;
  box-shadow:
    0 0 4px rgba(225, 255, 255, 0.50),
    0 0 12px rgba(0, 240, 255, 0.38);
}

.relay-copy-button.is-copied {
  color: #081108;
  border-color: rgba(123, 255, 150, 0.96);
  background: #62e97c;
  box-shadow:
    0 0 5px rgba(230, 255, 235, 0.82),
    0 0 16px rgba(76, 255, 115, 0.72),
    0 0 29px rgba(76, 255, 115, 0.34);
}

.relay-copy-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #91f7a6;
  font-size: 13px;
  line-height: 1.35;
}

.relay-copy-status.is-error {
  color: #ff8b9f;
}

.relay-reply-widget-bottom {
  width: min(100%, 620px);
  margin: 28px auto 8px;
}

.relay-reply-widget-bottom .relay-reply-trigger {
  width: min(100%, 320px);
}

@keyframes relay-copy-confirmation {
  0% {
    box-shadow:
      0 0 4px rgba(226, 255, 255, 0.54),
      0 0 15px rgba(0, 240, 255, 0.34);
  }

  45% {
    box-shadow:
      0 0 8px rgba(240, 255, 243, 0.90),
      0 0 24px rgba(76, 255, 115, 0.76),
      0 0 42px rgba(76, 255, 115, 0.34);
  }

  100% {
    box-shadow:
      0 0 4px rgba(226, 255, 255, 0.54),
      0 0 15px rgba(0, 240, 255, 0.34);
  }
}

.relay-address-panel.copy-flash {
  animation: relay-copy-confirmation 620ms ease;
}

@media (max-width: 800px) {
  .ad-details-mobile-header {
    gap: 13px;
  }

  .relay-reply-widget-top {
    position: static;
    order: 2;
    width: min(100%, 330px);
    transform: none;
  }

  .relay-reply-widget-top .relay-address-panel {
    position: static;
    width: 100%;
    transform: none;
  }

  .ad-details-mobile-header > .post-btn {
    order: 3;
  }

  .relay-reply-trigger {
    min-height: 48px;
    font-size: 15px;
  }

  .relay-address-panel {
    padding: 14px;
  }

  .relay-address-value {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .relay-address-panel.copy-flash {
    animation: none;
  }
}

/* v101 — mobile-only WWB split-color neon sign; preserve the existing shape */
@media (max-width: 800px) {
  .mobile-menu-category-list button:nth-child(4) {
    --image-neon-close: rgba(225, 250, 255, 0.68);
    --image-neon-primary: rgba(0, 209, 255, 0.72);
    --image-neon-secondary: rgba(255, 45, 151, 0.48);
    background-color: #020712 !important;
    background-image: url("/images/category-wwb-neon-split-v1.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    border-color: rgba(166, 240, 255, 0.88) !important;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(0, 215, 255, 0.88),
      0 0 16px rgba(255, 190, 38, 0.64) !important;
    box-shadow:
      0 0 5px rgba(225, 250, 255, 0.72),
      -7px 0 19px rgba(0, 209, 255, 0.66),
      7px 0 20px rgba(255, 45, 151, 0.48),
      0 0 34px rgba(255, 181, 24, 0.22),
      inset 0 0 14px rgba(0, 209, 255, 0.20),
      inset 0 0 22px rgba(255, 45, 151, 0.12) !important;
  }
}

/* v103 — mobile city spacing + PC rock-sign market controls */
@media (max-width: 800px) {
  .mobile-menu-category-list {
    margin-top: 22px;
  }
}

@media (min-width: 801px) {
  .geo-market-button,
  .geo-expandable-panel > summary {
    background-color: #02060b;
    background-image: url("/images/category-button-neon-texture.webp?v=1");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(0, 220, 255, 0.84),
      0 0 15px rgba(125, 57, 255, 0.54);
  }

  .geo-market-button {
    overflow: hidden;
    border-color: rgba(164, 241, 255, 0.86);
    box-shadow:
      0 0 4px rgba(236, 253, 255, 0.70),
      0 0 14px rgba(0, 219, 255, 0.52),
      0 0 25px rgba(110, 54, 255, 0.27);
  }

  .geo-market-canada {
    background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1");
    border-color: rgba(255, 132, 149, 0.92);
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 53, 86, 0.90),
      0 0 17px rgba(197, 0, 45, 0.58);
    box-shadow:
      0 0 4px rgba(255, 238, 241, 0.68),
      0 0 15px rgba(255, 43, 82, 0.56),
      0 0 25px rgba(174, 0, 39, 0.28);
  }

  .geo-expandable-panel {
    overflow: hidden;
  }

  .geo-expandable-panel > summary {
    color: #fff2b0;
    border-radius: 14px;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 205, 57, 0.92),
      0 0 15px rgba(0, 213, 255, 0.44);
  }

  .major-market-panel > summary {
    background-image: url("/images/category-wwb-neon-split-v1.webp?v=1");
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 205, 57, 0.92),
      0 0 16px rgba(255, 44, 154, 0.54);
  }

  .geo-expandable-panel[open] > summary {
    border-radius: 14px 14px 8px 8px;
  }
}

/* v104 — carry the four market rock signs into mobile */
@media (max-width: 800px) {
  .geo-market-button,
  .geo-expandable-panel > summary {
    background-color: #02060b;
    background-image: url("/images/category-button-neon-texture.webp?v=1");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(0, 220, 255, 0.84),
      0 0 15px rgba(125, 57, 255, 0.54);
  }

  .geo-market-button {
    overflow: hidden;
    border-color: rgba(164, 241, 255, 0.86);
    box-shadow:
      0 0 4px rgba(236, 253, 255, 0.70),
      0 0 14px rgba(0, 219, 255, 0.52),
      0 0 25px rgba(110, 54, 255, 0.27);
  }

  .geo-market-canada {
    background-image: url("/images/category-crimson-rock-sign-v1.webp?v=1");
    border-color: rgba(255, 132, 149, 0.92);
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 9px rgba(255, 53, 86, 0.90),
      0 0 17px rgba(197, 0, 45, 0.58);
    box-shadow:
      0 0 4px rgba(255, 238, 241, 0.68),
      0 0 15px rgba(255, 43, 82, 0.56),
      0 0 25px rgba(174, 0, 39, 0.28);
  }

  .geo-expandable-panel {
    overflow: hidden;
  }

  .geo-expandable-panel > summary {
    color: #fff2b0;
    border-radius: 14px;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 205, 57, 0.92),
      0 0 15px rgba(0, 213, 255, 0.44);
  }

  .major-market-panel > summary {
    background-image: url("/images/category-wwb-neon-split-v1.webp?v=1");
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 205, 57, 0.92),
      0 0 16px rgba(255, 44, 154, 0.54);
  }

  .geo-expandable-panel[open] > summary {
    border-radius: 14px 14px 8px 8px;
  }
}

/* v105 — PC hero divider and map silhouette glow */
@media (min-width: 801px) {
  .hero {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
        90deg,
        rgba(255, 37, 191, 0.22),
        rgba(255, 255, 255, 0.92) 18%,
        rgba(0, 232, 255, 0.96) 48%,
        rgba(255, 66, 205, 0.94) 78%,
        rgba(115, 66, 255, 0.24)
      )
      1;
    box-shadow:
      0 2px 4px rgba(225, 252, 255, 0.48),
      0 4px 11px rgba(0, 225, 255, 0.28),
      0 6px 18px rgba(255, 34, 197, 0.20);
  }

  .geo-market-nav::before {
    filter:
      saturate(1.12)
      brightness(1.34)
      drop-shadow(0 0 5px rgba(255, 116, 227, 0.70))
      drop-shadow(0 0 13px rgba(154, 91, 255, 0.47))
      drop-shadow(0 0 24px rgba(0, 226, 255, 0.20));
  }

  .geo-market-nav::after {
    filter:
      saturate(1.10)
      brightness(1.38)
      drop-shadow(0 0 5px rgba(224, 187, 255, 0.68))
      drop-shadow(0 0 14px rgba(0, 230, 255, 0.43))
      drop-shadow(0 0 25px rgba(255, 47, 200, 0.22));
  }

  .geo-market-nav.show-local-map::before {
    opacity: 0.34;
  }

  .geo-market-nav.show-usa-map::after {
    opacity: 0.36;
  }
}

/* v106 — rock-stage footer with crisp live text and brand marks */
.ke-home-footer {
  isolation: isolate;
  min-height: 320px;
  margin-top: 0;
  padding: 50px 24px 38px;
  overflow: hidden;
  color: #ffd24a;
  background-color: #020202;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0.20) 58%,
      rgba(0, 0, 0, 0.44)
    ),
    url("/images/footer-rock-stage-v1.webp?v=1");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Patrick Hand SC", cursive;
  font-size: 17px;
  letter-spacing: 0.45px;
  text-shadow:
    0 0 2px rgba(255, 252, 228, 0.98),
    0 0 8px rgba(255, 202, 44, 0.92),
    0 0 17px rgba(255, 126, 16, 0.54),
    0 0 25px rgba(255, 42, 188, 0.22);
  box-shadow:
    inset 0 16px 28px rgba(0, 220, 255, 0.08),
    inset 0 -18px 34px rgba(255, 25, 173, 0.09);
}

.ke-home-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 28px min(18vw, 320px) 24px;
  border-radius: 28px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.56),
    rgba(0, 0, 0, 0.18) 68%,
    transparent 100%
  );
  pointer-events: none;
}

.ke-home-footer p {
  position: relative;
  z-index: 1;
}

.ke-home-footer p:first-child {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.ke-home-footer p:last-child {
  color: #fff0a6;
  font-family: "Metal Mania", "Patrick Hand SC", cursive;
  font-size: 22px;
  letter-spacing: 0.9px;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.98),
    0 0 9px rgba(255, 193, 38, 0.92),
    0 0 19px rgba(255, 40, 176, 0.54);
}

.footer-brand-reference {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: #fff4c2;
  font-weight: 700;
}

.footer-brand-badge {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  vertical-align: middle;
}

.footer-brand-badge img {
  display: block;
  width: 17px;
  height: 17px;
}

.footer-brand-starbucks {
  background: #00754a;
  border: 1px solid rgba(214, 255, 236, 0.92);
  box-shadow:
    0 0 4px rgba(235, 255, 246, 0.74),
    0 0 10px rgba(0, 196, 118, 0.68);
}

.footer-brand-starbucks img {
  filter: invert(1);
}

.footer-brand-microsoft {
  border-radius: 6px;
  background: rgba(5, 5, 8, 0.90);
  border: 1px solid rgba(228, 247, 255, 0.84);
  box-shadow:
    0 0 4px rgba(245, 252, 255, 0.68),
    0 0 10px rgba(0, 190, 255, 0.48),
    0 0 15px rgba(255, 51, 170, 0.28);
}

.footer-brand-microsoft img {
  width: 16px;
  height: 16px;
}

@media (max-width: 800px) {
  .ke-home-footer {
    min-height: 390px;
    padding: 46px 18px 34px;
    font-size: 16px;
    background-position: center top;
  }

  .ke-home-footer::after {
    inset: 26px 18px 22px;
  }

  .ke-home-footer p:last-child {
    font-size: 20px;
  }
}

/* v107 — widen the PC footer message without increasing its height */
@media (min-width: 801px) {
  .ke-home-footer {
    background-image:
      radial-gradient(
        ellipse at 6% 72%,
        rgba(0, 220, 255, 0.25),
        rgba(0, 136, 255, 0.09) 10%,
        transparent 21%
      ),
      radial-gradient(
        ellipse at 94% 72%,
        rgba(255, 28, 174, 0.27),
        rgba(255, 54, 90, 0.09) 10%,
        transparent 21%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06),
        rgba(0, 0, 0, 0.20) 58%,
        rgba(0, 0, 0, 0.44)
      ),
      url("/images/footer-rock-stage-v1.webp?v=1");
  }

  .ke-home-footer::after {
    z-index: 0;
    background: linear-gradient(
      135deg,
      rgba(4, 9, 15, 0.58),
      rgba(3, 3, 5, 0.44) 48%,
      rgba(13, 3, 12, 0.56)
    );
    border: 1px solid rgba(211, 242, 255, 0.18);
    box-shadow:
      0 0 5px rgba(235, 250, 255, 0.16),
      -8px 0 24px rgba(0, 211, 255, 0.09),
      8px 0 24px rgba(255, 34, 182, 0.10),
      inset 0 0 24px rgba(0, 0, 0, 0.40);
  }

  .ke-home-footer p {
    transform: none;
    font-size: 19px;
    letter-spacing: 1.3px;
    word-spacing: 1.4px;
    text-shadow:
      0 0 1px rgba(255, 252, 228, 0.92),
      0 0 5px rgba(255, 202, 44, 0.58),
      0 0 10px rgba(255, 126, 16, 0.24);
  }

  .ke-home-footer p:first-child {
    font-size: 16px;
  }

  .ke-home-footer p:last-child {
    font-size: 23px;
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.92),
      0 0 5px rgba(255, 193, 38, 0.62),
      0 0 11px rgba(255, 40, 176, 0.25);
  }
}

/* v111 — match the finished crisp footer treatment on mobile */
@media (max-width: 800px) {
  .ke-home-footer {
    background-image:
      radial-gradient(
        ellipse at 7% 72%,
        rgba(0, 220, 255, 0.22),
        rgba(0, 136, 255, 0.08) 10%,
        transparent 22%
      ),
      radial-gradient(
        ellipse at 93% 72%,
        rgba(255, 28, 174, 0.24),
        rgba(255, 54, 90, 0.08) 10%,
        transparent 22%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06),
        rgba(0, 0, 0, 0.20) 58%,
        rgba(0, 0, 0, 0.44)
      ),
      url("/images/footer-rock-stage-v1.webp?v=1");
  }

  .ke-home-footer::after {
    z-index: 0;
    background: linear-gradient(
      135deg,
      rgba(4, 9, 15, 0.58),
      rgba(3, 3, 5, 0.44) 48%,
      rgba(13, 3, 12, 0.56)
    );
    border: 1px solid rgba(211, 242, 255, 0.18);
    box-shadow:
      0 0 5px rgba(235, 250, 255, 0.14),
      -6px 0 20px rgba(0, 211, 255, 0.08),
      6px 0 20px rgba(255, 34, 182, 0.09),
      inset 0 0 22px rgba(0, 0, 0, 0.38);
  }

  .ke-home-footer p {
    font-size: 17px;
    letter-spacing: 0.9px;
    word-spacing: 1px;
    text-shadow:
      0 0 1px rgba(255, 252, 228, 0.92),
      0 0 5px rgba(255, 202, 44, 0.56),
      0 0 10px rgba(255, 126, 16, 0.22);
  }

  .ke-home-footer p:first-child {
    font-size: 14px;
  }

  .ke-home-footer p:last-child {
    font-size: 21px;
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.92),
      0 0 5px rgba(255, 193, 38, 0.60),
      0 0 10px rgba(255, 40, 176, 0.23);
  }
}

/* v79 — place the top reply system in its own band below the header */
.relay-reply-top-band {
  position: relative;
  z-index: 18;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 10px 18px 14px;
  background:
    radial-gradient(circle at top, rgba(255, 204, 51, 0.055), transparent 64%),
    #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.relay-reply-top-band .relay-reply-widget-top {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 400px);
  transform: none;
}

.relay-reply-top-band .relay-reply-widget-top .relay-address-panel {
  position: relative;
  top: auto;
  left: 50%;
  width: min(620px, calc(100vw - 36px));
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .relay-reply-top-band {
    min-height: 70px;
    padding: 10px 12px 13px;
  }

  .relay-reply-top-band .relay-reply-widget-top {
    width: min(100%, 340px);
  }

  .relay-reply-top-band .relay-reply-widget-top .relay-address-panel {
    left: auto;
    width: 100%;
    transform: none;
  }
}

/* v122 — electric-ultraviolet listing accent
   Scoped here so the finished gold city names and footer remain untouched. */
body.listing-page {
  --gold: #b694ff;
}

body.listing-page .sidebar-subtitle,
body.listing-page .sidebar-filter-form .filter-section h2,
body.listing-page .related-subcategories-bar span,
body.listing-page .classified-location,
body.listing-page .nav-btn-small,
body.listing-page .listing-scorekeeper,
body.listing-page .sidebar-clear-btn,
body.listing-page .main-filter-pill {
  text-shadow:
    0 0 4px rgba(244, 238, 255, 0.92),
    0 0 10px rgba(182, 148, 255, 0.74),
    0 0 18px rgba(105, 77, 255, 0.38);
}

body.listing-page .listing-filter-pill.active,
body.listing-page .listing-view-btn.active,
body.listing-page .main-filter-pill {
  border-color: rgba(182, 148, 255, 0.78);
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 148, 255, 0.20), transparent 68%),
    rgba(61, 35, 104, 0.20);
  box-shadow:
    0 0 7px rgba(225, 212, 255, 0.44),
    0 0 17px rgba(146, 102, 255, 0.34),
    inset 0 0 12px rgba(182, 148, 255, 0.10);
}

body.listing-page .emp-nav-btn,
body.listing-page .sidebar-clear-btn {
  border-color: rgba(182, 148, 255, 0.62);
  background:
    radial-gradient(circle at top left, rgba(182, 148, 255, 0.16), transparent 48%),
    rgba(35, 20, 62, 0.16);
  box-shadow:
    0 0 12px rgba(182, 148, 255, 0.25),
    inset 0 0 14px rgba(255, 0, 204, 0.06);
}

/* v123 — selective neon-yellow focal accents */
body.listing-page .listing-location-heading,
body.listing-page .subcategory-title-block h1,
body.listing-page .sidebar-subtitle,
body.listing-page .distance-filter-section h2 {
  color: #ffb000;
  text-shadow:
    0 0 2px rgba(255, 244, 205, 0.92),
    0 0 7px rgba(255, 176, 0, 0.82),
    0 0 15px rgba(255, 132, 0, 0.42);
}

body.listing-page .listing-location-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

body.listing-page .listing-city-name {
  font-family: "Lobster Two", "Lobster", cursive;
  font-size: 0.72em;
  text-transform: none;
}

body.listing-page .listing-state-name {
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.listing-page .main-filter-pill {
  border-color: #ffb000;
  box-shadow:
    0 0 5px rgba(255, 239, 192, 0.50),
    0 0 14px rgba(255, 176, 0, 0.42),
    inset 0 0 12px rgba(255, 176, 0, 0.09);
}

body.listing-page .emp-nav-btn {
  border-color: #ffb000;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.14), transparent 48%),
    rgba(44, 32, 8, 0.14);
  box-shadow:
    0 0 5px rgba(255, 239, 192, 0.46),
    0 0 14px rgba(255, 176, 0, 0.36),
    inset 0 0 14px rgba(255, 176, 0, 0.07);
}

@media (max-width: 800px) {
  body.listing-page .listing-location-heading {
    align-items: center;
    gap: 3px;
  }
}

/* v125 — PC-only listing polish; mobile remains locked */
@media (min-width: 801px) {
  body.listing-page {
    --gold: #cf6bbd;
  }

  body.listing-page .listing-city-name {
    font-size: 2em;
    line-height: 0.95;
  }

  body.listing-page .listing-state-name {
    font-size: 0.72em;
  }

  body.listing-page .classified-location {
    color: #ffb000;
    text-transform: none;
  }

  body.listing-page .classified-location,
  body.listing-page .listing-location-heading,
  body.listing-page .subcategory-title-block h1,
  body.listing-page .sidebar-subtitle,
  body.listing-page .sidebar-filter-form .filter-section h2,
  body.listing-page .sidebar-clear-btn,
  body.listing-page .main-filter-pill,
  body.listing-page .related-subcategories-bar span {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.42);
  }

  body.listing-page .classified-location,
  body.listing-page .listing-location-heading,
  body.listing-page .subcategory-title-block h1,
  body.listing-page .sidebar-subtitle,
  body.listing-page .distance-filter-section h2 {
    text-shadow:
      0 0 1px rgba(255, 246, 214, 0.60),
      0 0 3px rgba(255, 176, 0, 0.42);
  }

  body.listing-page .sidebar-filter-form .filter-section:not(.distance-filter-section) h2,
  body.listing-page .sidebar-clear-btn,
  body.listing-page .main-filter-pill,
  body.listing-page .related-subcategories-bar span {
    text-shadow:
      0 0 1px rgba(255, 241, 252, 0.42),
      0 0 3px rgba(207, 107, 189, 0.30);
  }

  body.listing-page .sidebar-filter-form .filter-section:not(.distance-filter-section) h2 {
    color: #cf6bbd;
  }

  body.listing-page .subcategory-nav-btn {
    position: relative;
    min-width: 244px;
    min-height: 68px;
    padding: 10px 24px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background:
      linear-gradient(90deg, rgba(0, 223, 255, 0.07), transparent 44%, rgba(255, 0, 183, 0.10)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #030407;
    box-shadow:
      0 0 5px rgba(235, 253, 255, 0.62),
      0 0 17px rgba(0, 221, 255, 0.42),
      0 0 24px rgba(255, 25, 185, 0.28);
  }

  body.listing-page .subcategory-nav-btn::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(223, 249, 255, 0.30);
    border-radius: 15px;
    pointer-events: none;
    box-shadow:
      inset 0 0 9px rgba(0, 224, 255, 0.14),
      0 0 7px rgba(255, 36, 190, 0.10);
  }

  body.listing-page .subcategory-nav-btn .nav-btn-small,
  body.listing-page .subcategory-nav-btn .nav-btn-main {
    position: relative;
    z-index: 1;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.94),
      0 0 7px rgba(255, 40, 204, 0.58);
  }

  body.listing-page .subcategory-nav-btn .nav-btn-small {
    color: #ffb000;
  }

  body.listing-page .subcategory-nav-btn:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
      0 0 7px rgba(245, 255, 255, 0.72),
      0 0 21px rgba(0, 224, 255, 0.52),
      0 0 30px rgba(255, 24, 185, 0.38);
  }

  body.listing-page .emp-nav-btn {
    border: 0;
    background:
      linear-gradient(90deg, rgba(255, 176, 0, 0.08), transparent 42%, rgba(255, 0, 183, 0.12)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #030407;
  }

  body.listing-page .listing-view-btn.active {
    border-color: #ffb000;
    box-shadow:
      0 0 3px rgba(255, 246, 212, 0.62),
      0 0 11px rgba(255, 176, 0, 0.52),
      inset 0 0 9px rgba(255, 176, 0, 0.10);
  }

  body.listing-page .sidebar-actions .post-btn:not(.sidebar-clear-btn) {
    position: relative;
    overflow: hidden;
    border-color: rgba(0, 240, 255, 0.92);
    color: #55f8ff;
    background:
      linear-gradient(90deg, rgba(0, 240, 255, 0.18), transparent 42%, rgba(0, 132, 255, 0.16)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #02080b;
    border-radius: 12px;
    box-shadow:
      0 0 3px rgba(226, 254, 255, 0.60),
      0 0 12px rgba(0, 240, 255, 0.38),
      inset 0 0 14px rgba(0, 240, 255, 0.14);
    text-shadow:
      0 0 1px rgba(245, 255, 255, 0.72),
      0 0 4px rgba(0, 240, 255, 0.48);
  }

  body.listing-page .sidebar-actions .post-btn:not(.sidebar-clear-btn):hover {
    transform: translateY(-2px) scale(1.012);
    background:
      linear-gradient(90deg, rgba(0, 240, 255, 0.26), transparent 42%, rgba(0, 132, 255, 0.23)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #031014;
    box-shadow:
      0 0 5px rgba(229, 255, 255, 0.68),
      0 0 18px rgba(0, 240, 255, 0.50),
      inset 0 0 13px rgba(0, 240, 255, 0.13);
  }

  body.listing-page .sidebar-clear-btn {
    position: relative;
    overflow: hidden;
    border-color: rgba(207, 107, 189, 0.84);
    color: #cf6bbd;
    background:
      linear-gradient(90deg, rgba(207, 107, 189, 0.18), transparent 42%, rgba(129, 63, 145, 0.18)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #0a050a;
    border-radius: 12px;
    box-shadow:
      0 0 3px rgba(255, 232, 249, 0.42),
      0 0 12px rgba(207, 107, 189, 0.30),
      inset 0 0 14px rgba(207, 107, 189, 0.12);
  }

  body.listing-page .sidebar-clear-btn:hover {
    transform: translateY(-2px) scale(1.012);
    background:
      linear-gradient(90deg, rgba(207, 107, 189, 0.25), transparent 42%, rgba(129, 63, 145, 0.24)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #120812;
    box-shadow:
      0 0 5px rgba(255, 235, 250, 0.52),
      0 0 17px rgba(207, 107, 189, 0.42),
      inset 0 0 13px rgba(207, 107, 189, 0.15);
  }

  body.listing-page .listing-view-gallery .classified-location {
    text-shadow:
      0 0 1px rgba(255, 247, 218, 0.74),
      0 0 4px rgba(255, 176, 0, 0.58);
  }

body.listing-page .listing-view-gallery .classified-title {
    color: var(--blue);
    text-shadow:
      0 0 1px rgba(238, 255, 255, 0.62),
      0 0 3px rgba(0, 240, 255, 0.36);
  }
}

/* ==========================================================
   FINAL CREATE-AD FORM PASS — AIR, HARDWARE & WWB FLARE
========================================================== */

.create-ad-form {
  gap: 18px;
}

.create-ad-form > input:not([type="hidden"]),
.create-ad-form > select,
.create-ad-form > textarea,
.create-ad-form > .form-field,
.create-ad-form > .form-grid-2,
.create-ad-form > .form-grid-3,
.create-ad-form > fieldset,
.create-ad-form > .create-ad-section,
.create-ad-form > .photo-upload-box {
  margin-block: 5px;
}

.create-ad-form .form-field {
  gap: 8px;
}

.create-ad-form .form-grid-2,
.create-ad-form .form-grid-3 {
  gap: 15px;
}

.create-ad-form fieldset,
.create-ad-form .create-ad-section {
  padding: 18px;
}

.create-ad-form fieldset > input:not([type="checkbox"]):not([type="radio"]),
.create-ad-form fieldset > select,
.create-ad-form fieldset > textarea,
.create-ad-form .create-ad-section > input:not([type="checkbox"]):not([type="radio"]),
.create-ad-form .create-ad-section > select,
.create-ad-form .create-ad-section > textarea {
  margin-block: 5px;
}

.create-ad-form .radio-stack,
.create-ad-form .checkbox-grid {
  gap: 12px 18px;
}

/* Checked boxes are illuminated hardware, not an X. */
.create-ad-form input[type="checkbox"] {
  border-radius: 50%;
}

.create-ad-form input[type="checkbox"]:checked {
  border-color: #ffb000;
  background:
    radial-gradient(circle, #fff7d8 0 22%, #ffb000 24% 48%, #a82a76 51% 66%, #08030a 69%),
    #08030a;
  box-shadow:
    0 0 4px rgba(255, 249, 221, 0.88),
    0 0 10px rgba(255, 176, 0, 0.68),
    0 0 17px rgba(255, 28, 190, 0.30),
    inset 0 0 5px rgba(255, 255, 255, 0.18);
}

.vehicle-ad-form {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(0, 222, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 4% 2%, rgba(0, 215, 255, 0.09), transparent 30%),
    radial-gradient(circle at 96% 4%, rgba(255, 45, 151, 0.08), transparent 32%),
    rgba(5, 7, 10, 0.58);
  box-shadow:
    -5px 0 18px rgba(0, 209, 255, 0.11),
    5px 0 18px rgba(255, 45, 151, 0.10),
    inset 0 0 20px rgba(88, 58, 160, 0.06);
}

.vehicle-ad-form input:focus,
.vehicle-ad-form select:focus,
.vehicle-ad-form textarea:focus {
  border-color: rgba(0, 231, 255, 0.76);
  box-shadow: 0 0 10px rgba(0, 218, 255, 0.25), 0 0 16px rgba(255, 45, 151, 0.10);
  outline: none;
}

@media (max-width: 800px) {
  .create-ad-form > input:not([type="hidden"]),
  .create-ad-form > select,
  .create-ad-form > textarea,
  .create-ad-form > .form-field,
  .create-ad-form > fieldset,
  .create-ad-form > .create-ad-section,
  .create-ad-form > .photo-upload-box {
    margin-block: 7px;
  }

  .create-ad-form fieldset,
  .create-ad-form .create-ad-section {
    padding: 16px 14px;
  }

  .vehicle-ad-form {
    padding: 14px;
  }
}


/* ==========================================================
   CREATE-AD CONTROLS — ROCK STAGE HARDWARE
   Shared by every public posting form.
========================================================== */

.create-ad-form fieldset,
.create-ad-form .create-ad-section,
.create-ad-form .photo-upload-box {
  border-color: rgba(203, 72, 194, 0.34);
  background:
    linear-gradient(115deg, rgba(255, 0, 183, 0.055), transparent 34%, rgba(0, 210, 255, 0.045)),
    radial-gradient(circle at 12% 0%, rgba(153, 54, 183, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(16, 10, 18, 0.96), rgba(5, 5, 8, 0.97));
  box-shadow:
    0 0 10px rgba(203, 72, 194, 0.08),
    inset 0 0 18px rgba(124, 58, 160, 0.055);
}

.create-ad-form fieldset:hover,
.create-ad-form .create-ad-section:hover,
.create-ad-form .photo-upload-box:hover {
  border-color: rgba(225, 89, 203, 0.48);
  box-shadow:
    0 0 5px rgba(243, 223, 255, 0.12),
    0 0 15px rgba(211, 63, 191, 0.13),
    inset 0 0 18px rgba(121, 52, 151, 0.075);
}

.create-ad-form input[type="checkbox"],
.create-ad-form input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: inline-grid;
  place-content: center;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  min-width: 19px;
  min-height: 19px;
  margin: 0 9px 0 0;
  padding: 0;
  vertical-align: -3px;
  border: 1px solid rgba(137, 231, 255, 0.76);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 23%),
    linear-gradient(145deg, #121521, #030306 72%);
  box-shadow:
    0 0 3px rgba(224, 252, 255, 0.62),
    0 0 8px rgba(0, 216, 255, 0.30),
    inset 0 0 6px rgba(110, 54, 168, 0.24);
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease,
    background 0.16s ease;
}

.create-ad-form input[type="checkbox"] {
  border-radius: 50%;
}

.create-ad-form input[type="radio"] {
  border-radius: 50%;
}

.create-ad-form input[type="checkbox"]:hover,
.create-ad-form input[type="radio"]:hover {
  transform: scale(1.09);
  border-color: rgba(255, 79, 211, 0.94);
  box-shadow:
    0 0 4px rgba(255, 247, 255, 0.78),
    0 0 10px rgba(255, 45, 198, 0.46),
    0 0 16px rgba(0, 220, 255, 0.22),
    inset 0 0 7px rgba(255, 51, 196, 0.16);
}

.create-ad-form input[type="radio"]:checked {
  border-color: #ffb000;
  background:
    radial-gradient(circle, #fff7d8 0 18%, #ffb000 20% 40%, transparent 43%),
    linear-gradient(145deg, #28122a, #050307 74%);
  box-shadow:
    0 0 4px rgba(255, 249, 221, 0.92),
    0 0 10px rgba(255, 176, 0, 0.76),
    0 0 17px rgba(255, 33, 193, 0.34),
    inset 0 0 7px rgba(255, 176, 0, 0.18);
}

.create-ad-form input[type="checkbox"]:checked {
  border-color: #ffb000;
  background:
    radial-gradient(circle, #fff7d8 0 22%, #ffb000 24% 48%, #a82a76 51% 66%, #08030a 69%),
    #08030a;
  box-shadow:
    0 0 4px rgba(255, 249, 221, 0.92),
    0 0 10px rgba(255, 176, 0, 0.68),
    0 0 17px rgba(255, 28, 190, 0.34),
    inset 0 0 6px rgba(255, 255, 255, 0.16);
}

.create-ad-form input[type="checkbox"]:focus-visible,
.create-ad-form input[type="radio"]:focus-visible {
  outline: 2px solid rgba(255, 248, 218, 0.94);
  outline-offset: 3px;
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.92),
    0 0 13px rgba(255, 176, 0, 0.78),
    0 0 21px rgba(255, 26, 191, 0.42);
}

.create-ad-form .radio-stack label,
.create-ad-form .checkbox-grid label,
.create-ad-form .form-check {
  display: flex;
  align-items: center;
  min-height: 30px;
  cursor: pointer;
}

.create-ad-form .radio-stack label:hover,
.create-ad-form .checkbox-grid label:hover,
.create-ad-form .form-check:hover {
  color: #fff7dc;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.25),
    0 0 8px rgba(255, 176, 0, 0.20);
}

@media (max-width: 800px) {
  .create-ad-form input[type="checkbox"],
  .create-ad-form input[type="radio"] {
    flex-basis: 21px;
    width: 21px;
    height: 21px;
    min-width: 21px;
    min-height: 21px;
    margin-right: 10px;
  }
}

/* v133 — desktop WWB split-color sign + Hustles electric-blue sign */
@media (min-width: 801px) {
  .desktop-home-cats #home-category-vehicles h2 {
    background-color: #020712 !important;
    background-image: url("/images/category-wwb-neon-split-v1.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(0, 215, 255, 0.88),
      0 0 16px rgba(255, 45, 151, 0.58) !important;
    box-shadow:
      0 0 5px rgba(225, 250, 255, 0.72),
      -7px 0 19px rgba(0, 209, 255, 0.64),
      7px 0 20px rgba(255, 45, 151, 0.48),
      0 0 32px rgba(126, 80, 255, 0.28) !important;
  }

  .desktop-home-cats #home-category-hustles h2 {
    background-color: #02101a !important;
    background-image: url("/images/post-ad-rock-sign-v1.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    text-shadow:
      0 0 3px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(77, 227, 255, 0.92),
      0 0 16px rgba(0, 157, 255, 0.68) !important;
    box-shadow:
      0 0 5px rgba(224, 252, 255, 0.54),
      0 0 15px rgba(0, 213, 255, 0.56),
      0 0 28px rgba(0, 104, 255, 0.32) !important;
  }
}

/* v134 — replace the remaining crimson LP category signs with WWB amber-orange */
@media (min-width: 801px) {
  .desktop-home-cats #home-category-cribs h2,
  .desktop-home-cats #home-category-yard-sale h2,
  .desktop-home-cats #home-category-scenes h2 {
    background-color: #160b01 !important;
    background-image: url("/images/my-music-rock-sign-v1.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 178, 36, 0.90),
      0 0 16px rgba(255, 112, 15, 0.66) !important;
    box-shadow:
      0 0 5px rgba(255, 242, 199, 0.62),
      0 0 16px rgba(255, 170, 25, 0.58),
      0 0 29px rgba(255, 92, 8, 0.32) !important;
  }
}

@media (max-width: 800px) {
  .mobile-menu-category-list button:nth-child(6) {
    --image-neon-close: rgba(255, 242, 199, 0.62);
    --image-neon-primary: rgba(255, 170, 25, 0.60);
    --image-neon-secondary: rgba(255, 92, 8, 0.34);
    background-color: #160b01 !important;
    background-image: url("/images/my-music-rock-sign-v1.webp?v=1") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 178, 36, 0.90),
      0 0 16px rgba(255, 112, 15, 0.66) !important;
    box-shadow:
      0 0 5px rgba(255, 242, 199, 0.62),
      0 0 16px rgba(255, 170, 25, 0.58),
      0 0 29px rgba(255, 92, 8, 0.32) !important;
  }
}

/* v135 — warmer amber-orange category signs + city-amber featured subcategories */
@media (min-width: 801px) {
  .desktop-home-cats #home-category-cribs h2,
  .desktop-home-cats #home-category-yard-sale h2,
  .desktop-home-cats #home-category-scenes h2 {
    background-image:
      linear-gradient(90deg, rgba(255, 88, 0, 0.12), rgba(255, 151, 18, 0.18), rgba(255, 88, 0, 0.12)),
      url("/images/my-music-rock-sign-v1.webp?v=1") !important;
    background-blend-mode: screen, normal;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 150, 20, 0.96),
      0 0 18px rgba(255, 76, 0, 0.78) !important;
    box-shadow:
      0 0 5px rgba(255, 235, 188, 0.66),
      0 0 17px rgba(255, 132, 12, 0.68),
      0 0 31px rgba(255, 67, 0, 0.40) !important;
  }
}

@media (max-width: 800px) {
  .mobile-menu-category-list button:nth-child(6) {
    --image-neon-close: rgba(255, 235, 188, 0.66);
    --image-neon-primary: rgba(255, 132, 12, 0.68);
    --image-neon-secondary: rgba(255, 67, 0, 0.40);
    background-image:
      linear-gradient(90deg, rgba(255, 88, 0, 0.12), rgba(255, 151, 18, 0.18), rgba(255, 88, 0, 0.12)),
      url("/images/my-music-rock-sign-v1.webp?v=1") !important;
    background-blend-mode: screen, normal;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.98),
      0 0 8px rgba(255, 150, 20, 0.96),
      0 0 18px rgba(255, 76, 0, 0.78) !important;
    box-shadow:
      0 0 5px rgba(255, 235, 188, 0.66),
      0 0 17px rgba(255, 132, 12, 0.68),
      0 0 31px rgba(255, 67, 0, 0.40) !important;
  }
}

.home-links.home-link-list a.skilled-subcat,
.job-category-option.skilled-subcat,
.home-links.home-link-list a.vehicles-rv-subcat,
.job-category-option.vehicles-rv-subcat,
.home-links.home-link-list a.musicians-subcat,
.job-category-option.musicians-subcat {
  color: #fff4cf !important;
  border-color: rgba(255, 176, 0, 0.82) !important;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.25), transparent 42%),
    rgba(255, 176, 0, 0.075) !important;
  box-shadow:
    0 0 5px rgba(255, 242, 199, 0.48),
    0 0 14px rgba(255, 176, 0, 0.36),
    inset 0 0 12px rgba(255, 176, 0, 0.10) !important;
  text-shadow:
    0 0 3px rgba(255, 244, 205, 0.90),
    0 0 8px rgba(255, 176, 0, 0.78),
    0 0 15px rgba(255, 132, 0, 0.38) !important;
}

@media (max-width: 800px) {
  .mobile-menu-subcategory-list a.skilled-subcat,
  .mobile-menu-subcategory-list a.vehicles-rv-subcat,
  .mobile-menu-subcategory-list a.musicians-subcat {
    color: #fff4cf !important;
    border-color: rgba(255, 176, 0, 0.82) !important;
    background:
      radial-gradient(circle at top left, rgba(255, 176, 0, 0.25), transparent 42%),
      rgba(255, 176, 0, 0.075) !important;
    box-shadow:
      0 0 5px rgba(255, 242, 199, 0.44),
      0 0 13px rgba(255, 176, 0, 0.34),
      inset 0 0 11px rgba(255, 176, 0, 0.10) !important;
    text-shadow:
      0 0 3px rgba(255, 244, 205, 0.90),
      0 0 8px rgba(255, 176, 0, 0.78),
      0 0 15px rgba(255, 132, 0, 0.38) !important;
  }
}

/* v137 — graduated orange-sign glow: Yard Sale < Cribs < Scenes */
@media (min-width: 801px) {
  .desktop-home-cats #home-category-cribs h2 {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.92),
      0 0 7px rgba(255, 150, 20, 0.78),
      0 0 14px rgba(255, 76, 0, 0.54) !important;
    box-shadow:
      0 0 4px rgba(255, 235, 188, 0.50),
      0 0 15px rgba(255, 132, 12, 0.54),
      0 0 27px rgba(255, 67, 0, 0.29) !important;
  }

  .desktop-home-cats #home-category-scenes h2 {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.94),
      0 0 8px rgba(255, 150, 20, 0.84),
      0 0 16px rgba(255, 76, 0, 0.60) !important;
    box-shadow:
      0 0 5px rgba(255, 235, 188, 0.56),
      0 0 17px rgba(255, 132, 12, 0.60),
      0 0 30px rgba(255, 67, 0, 0.33) !important;
  }
}

/* v138 — Cities copy cleanup + mobile state accordion */
.city-region-toggle {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: default;
}

.city-region-chevron {
  display: none;
}

@media (max-width: 560px) {
  .city-region-grid,
  .canada-city-section .city-region-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    column-count: auto;
  }

  .city-region-card {
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .city-region-card:hover {
    transform: none;
  }

  .city-region-card h3 {
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }

  .city-region-toggle {
    min-height: 52px;
    padding: 13px 16px;
    cursor: pointer;
  }

  .city-region-toggle:focus-visible {
    outline: 2px solid rgba(0, 229, 255, 0.9);
    outline-offset: -3px;
  }

  .city-region-chevron {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin-left: 12px;
    border: 1px solid rgba(255, 176, 0, 0.58);
    border-radius: 50%;
    color: #ffb000;
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    line-height: 1;
    box-shadow:
      0 0 7px rgba(255, 176, 0, 0.20),
      inset 0 0 7px rgba(255, 176, 0, 0.08);
  }

  .city-region-card.is-open .city-region-chevron {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.64);
    box-shadow:
      0 0 8px rgba(0, 229, 255, 0.28),
      inset 0 0 7px rgba(0, 229, 255, 0.10);
  }

  .city-region-card.is-open .city-region-chevron::before {
    content: "−";
  }

  .city-region-card.is-open .city-region-chevron {
    font-size: 0;
  }

  .city-region-card.is-open .city-region-chevron::before {
    font-size: 1rem;
  }

  .city-region-card .city-link-list {
    display: none;
    padding: 4px 12px 13px;
    border-top: 1px solid rgba(255, 176, 0, 0.18);
  }

  .city-region-card.is-open .city-link-list {
    display: grid;
  }
}

/* v139 — bring the finished PC listing palette to mobile without changing layout */
@media (max-width: 800px) {
  body.listing-page {
    --gold: #cf6bbd;
  }

  body.listing-page .listing-city-name {
    font-size: 2em;
    line-height: 0.95;
  }

  body.listing-page .listing-state-name {
    font-size: 0.72em;
  }

  body.listing-page .classified-location {
    color: #ffb000;
    text-transform: none;
    text-shadow:
      0 0 1px rgba(255, 247, 218, 0.70),
      0 0 4px rgba(255, 176, 0, 0.52);
  }

  body.listing-page .listing-location-heading,
  body.listing-page .subcategory-title-block h1,
  body.listing-page .sidebar-subtitle,
  body.listing-page .distance-filter-section h2 {
    color: #ffb000;
    text-shadow:
      0 0 1px rgba(255, 246, 214, 0.58),
      0 0 3px rgba(255, 176, 0, 0.40);
  }

  body.listing-page .sidebar-filter-form .filter-section:not(.distance-filter-section) h2,
  body.listing-page .sidebar-clear-btn,
  body.listing-page .related-subcategories-bar span {
    color: #cf6bbd;
    text-shadow:
      0 0 1px rgba(255, 241, 252, 0.38),
      0 0 3px rgba(207, 107, 189, 0.27);
  }

  body.listing-page .subcategory-nav-btn {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(0, 223, 255, 0.07), transparent 44%, rgba(255, 0, 183, 0.10)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #030407;
    box-shadow:
      0 0 4px rgba(235, 253, 255, 0.56),
      0 0 14px rgba(0, 221, 255, 0.36),
      0 0 21px rgba(255, 25, 185, 0.24);
  }

  body.listing-page .subcategory-nav-btn::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(223, 249, 255, 0.28);
    border-radius: 14px;
    pointer-events: none;
    box-shadow:
      inset 0 0 8px rgba(0, 224, 255, 0.12),
      0 0 6px rgba(255, 36, 190, 0.09);
  }

  body.listing-page .subcategory-nav-btn .nav-btn-small,
  body.listing-page .subcategory-nav-btn .nav-btn-main {
    position: relative;
    z-index: 1;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.88),
      0 0 6px rgba(255, 40, 204, 0.48);
  }

  body.listing-page .subcategory-nav-btn .nav-btn-small {
    color: #ffb000;
  }

  body.listing-page .emp-nav-btn {
    border: 0;
    background:
      linear-gradient(90deg, rgba(255, 176, 0, 0.08), transparent 42%, rgba(255, 0, 183, 0.12)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #030407;
  }

  body.listing-page .listing-view-btn.active,
  body.listing-page .main-filter-pill {
    border-color: #ffb000;
    box-shadow:
      0 0 3px rgba(255, 246, 212, 0.56),
      0 0 10px rgba(255, 176, 0, 0.45),
      inset 0 0 8px rgba(255, 176, 0, 0.09);
  }

  body.listing-page .sidebar-actions .post-btn:not(.sidebar-clear-btn) {
    position: relative;
    overflow: hidden;
    border-color: rgba(0, 240, 255, 0.88);
    color: #55f8ff;
    background:
      linear-gradient(90deg, rgba(0, 240, 255, 0.16), transparent 42%, rgba(0, 132, 255, 0.14)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #02080b;
    border-radius: 12px;
    box-shadow:
      0 0 3px rgba(226, 254, 255, 0.54),
      0 0 10px rgba(0, 240, 255, 0.33),
      inset 0 0 12px rgba(0, 240, 255, 0.12);
    text-shadow:
      0 0 1px rgba(245, 255, 255, 0.68),
      0 0 4px rgba(0, 240, 255, 0.42);
  }

  body.listing-page .sidebar-clear-btn {
    position: relative;
    overflow: hidden;
    border-color: rgba(207, 107, 189, 0.80);
    color: #cf6bbd;
    background:
      linear-gradient(90deg, rgba(207, 107, 189, 0.16), transparent 42%, rgba(129, 63, 145, 0.16)),
      url("/images/category-button-neon-texture.webp?v=1") center / 100% 100% no-repeat,
      #0a050a;
    border-radius: 12px;
    box-shadow:
      0 0 3px rgba(255, 232, 249, 0.38),
      0 0 10px rgba(207, 107, 189, 0.27),
      inset 0 0 12px rgba(207, 107, 189, 0.10);
  }

  body.listing-page .listing-view-gallery .classified-title,
  body.listing-page .classified-title {
    color: var(--blue);
    text-shadow:
      0 0 1px rgba(238, 255, 255, 0.58),
      0 0 3px rgba(0, 240, 255, 0.32);
  }

  .mobile-category-hero p,
  .all-kats-location p,
  .all-kats-location span,
  .category-hub-location p,
  .category-hub-location span {
    color: #ffb000;
    text-shadow:
      0 0 2px rgba(255, 244, 205, 0.76),
      0 0 7px rgba(255, 176, 0, 0.62),
      0 0 13px rgba(255, 132, 0, 0.28);
  }
}

/* v136 — black sign centers with restrained amber highlights */
@media (min-width: 801px) {
  .desktop-home-cats #home-category-cribs h2,
  .desktop-home-cats #home-category-yard-sale h2,
  .desktop-home-cats #home-category-scenes h2 {
    background-color: #020202 !important;
    background-image:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.86) 0 40%, rgba(0, 0, 0, 0.62) 55%, transparent 77%),
      url("/images/my-music-rock-sign-v1.webp?v=1") !important;
    background-blend-mode: normal, normal;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.90),
      0 0 6px rgba(255, 150, 20, 0.72),
      0 0 12px rgba(255, 76, 0, 0.48) !important;
    box-shadow:
      0 0 4px rgba(255, 235, 188, 0.46),
      0 0 13px rgba(255, 132, 12, 0.48),
      0 0 24px rgba(255, 67, 0, 0.25) !important;
  }
}

@media (max-width: 800px) {
  .mobile-menu-category-list button:nth-child(6) {
    --image-neon-close: rgba(255, 235, 188, 0.46);
    --image-neon-primary: rgba(255, 132, 12, 0.48);
    --image-neon-secondary: rgba(255, 67, 0, 0.25);
    background-color: #020202 !important;
    background-image:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.86) 0 40%, rgba(0, 0, 0, 0.62) 55%, transparent 77%),
      url("/images/my-music-rock-sign-v1.webp?v=1") !important;
    background-blend-mode: normal, normal;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.90),
      0 0 6px rgba(255, 150, 20, 0.72),
      0 0 12px rgba(255, 76, 0, 0.48) !important;
    box-shadow:
      0 0 4px rgba(255, 235, 188, 0.46),
      0 0 13px rgba(255, 132, 12, 0.48),
      0 0 24px rgba(255, 67, 0, 0.25) !important;
  }
}

.home-links.home-link-list a.skilled-subcat,
.job-category-option.skilled-subcat,
.home-links.home-link-list a.vehicles-rv-subcat,
.job-category-option.vehicles-rv-subcat,
.home-links.home-link-list a.musicians-subcat,
.job-category-option.musicians-subcat {
  color: #ffe2a3 !important;
  border-color: rgba(255, 176, 0, 0.66) !important;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.13), transparent 43%),
    rgba(5, 4, 1, 0.90) !important;
  box-shadow:
    0 0 3px rgba(255, 242, 199, 0.28),
    0 0 9px rgba(255, 176, 0, 0.23),
    inset 0 0 8px rgba(255, 176, 0, 0.055) !important;
  text-shadow:
    0 0 2px rgba(255, 244, 205, 0.66),
    0 0 5px rgba(255, 176, 0, 0.48),
    0 0 9px rgba(255, 132, 0, 0.20) !important;
}

@media (max-width: 800px) {
  .mobile-menu-subcategory-list a.skilled-subcat,
  .mobile-menu-subcategory-list a.vehicles-rv-subcat,
  .mobile-menu-subcategory-list a.musicians-subcat {
    color: #ffe2a3 !important;
    border-color: rgba(255, 176, 0, 0.66) !important;
    background:
      radial-gradient(circle at top left, rgba(255, 176, 0, 0.13), transparent 43%),
      rgba(5, 4, 1, 0.90) !important;
    box-shadow:
      0 0 3px rgba(255, 242, 199, 0.26),
      0 0 8px rgba(255, 176, 0, 0.22),
      inset 0 0 8px rgba(255, 176, 0, 0.05) !important;
    text-shadow:
      0 0 2px rgba(255, 244, 205, 0.64),
      0 0 5px rgba(255, 176, 0, 0.46),
      0 0 9px rgba(255, 132, 0, 0.18) !important;
  }
}

/* v141 — replace the CSS crown with Kaiser's illustrated jukebox crown */
@media (max-width: 800px) {
  .mobile-menu-category-list::before,
  .all-kats-grid::before {
    content: "";
    display: block;
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 1400 / 552;
    margin: 0 auto 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background:
      url("/images/mobile-jukebox-kaisers-crown-v1.webp?v=1")
      center bottom / contain no-repeat;
    box-shadow: none;
    filter:
      drop-shadow(0 0 4px rgba(255, 245, 215, 0.50))
      drop-shadow(-5px 0 10px rgba(0, 220, 255, 0.30))
      drop-shadow(5px 0 11px rgba(255, 24, 178, 0.30));
    font-size: 0;
    line-height: 0;
    text-shadow: none;
  }
}

/* v143 — the Cribs / WWB / Yard Sale desktop column becomes a jukebox */
.desktop-jukebox-crown-shell,
.desktop-jukebox-crown,
.desktop-jukebox-deck,
.desktop-amp-crown-shell,
.desktop-amp-crown,
.desktop-amp-deck-shell,
.desktop-amp-deck {
  display: none;
}

@media (min-width: 801px) {
  .desktop-jukebox-crown-shell {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(100% + 26px);
    aspect-ratio: 1400 / 552;
    max-width: none;
    margin: -13px -13px 11px;
    border-radius: 24px 24px 6px 6px;
    filter:
      drop-shadow(0 -2px 4px rgba(255, 247, 219, 0.76))
      drop-shadow(-9px 0 13px rgba(0, 229, 255, 0.72))
      drop-shadow(9px 0 14px rgba(255, 24, 178, 0.70))
      drop-shadow(0 8px 15px rgba(255, 176, 0, 0.28));
  }

  .desktop-jukebox-crown {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
  }

  .desktop-jukebox-inner-bottom-aura {
    position: absolute;
    z-index: 4;
    right: 2%;
    bottom: 0;
    left: 2%;
    display: block;
    height: 23px;
    pointer-events: none;
    border-radius: 50%;
    background:
      radial-gradient(
        ellipse at 24% 100%,
        rgba(33, 226, 255, 0.29),
        transparent 48%
      ),
      radial-gradient(
        ellipse at 76% 100%,
        rgba(255, 40, 181, 0.27),
        transparent 48%
      ),
      linear-gradient(
        90deg,
        rgba(30, 224, 255, 0.14),
        rgba(255, 193, 43, 0.13) 50%,
        rgba(255, 38, 181, 0.14)
      );
    filter: blur(6px);
    opacity: 0.82;
  }

  #home-category-cribs {
    overflow: visible;
    padding-top: 13px;
    box-shadow:
      0 -5px 12px rgba(240, 255, 255, 0.50),
      -8px 0 22px rgba(0, 229, 255, 0.30),
      8px 0 23px rgba(255, 24, 178, 0.30),
      0 0 30px rgba(255, 176, 0, 0.15);
  }

  #home-category-cribs > h2 {
    position: relative;
    z-index: 4;
    margin-top: 0;
  }

  .desktop-jukebox-deck {
    position: relative;
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: calc(100% + 26px);
    min-height: 88px;
    margin: 10px -13px -13px;
    padding: 17px 24px;
    border: 2px solid rgba(255, 194, 55, 0.86);
    border-radius: 18px 18px 56px 56px;
    color: #ffcf4a;
    background:
      repeating-linear-gradient(
        90deg,
        transparent 0 9px,
        rgba(255, 62, 40, 0.30) 10px 13px,
        transparent 14px 23px
      ),
      radial-gradient(circle at 50% 45%, rgba(255, 176, 0, 0.27), transparent 35%),
      linear-gradient(
        90deg,
        rgba(0, 217, 255, 0.18),
        rgba(7, 5, 7, 0.98) 25% 75%,
        rgba(255, 19, 171, 0.21)
      ),
      #030303;
    box-shadow:
      inset 0 0 0 4px rgba(0, 0, 0, 0.84),
      inset 0 0 19px rgba(255, 176, 0, 0.18),
      0 0 5px rgba(255, 245, 207, 0.68),
      0 0 17px rgba(255, 176, 0, 0.48),
      -8px 0 22px rgba(0, 226, 255, 0.28),
      8px 0 23px rgba(255, 25, 179, 0.28);
    font-family: "Orbitron", Arial, sans-serif;
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.88),
      0 0 7px rgba(255, 176, 0, 0.76);
  }

  .desktop-jukebox-deck strong {
    font-family: "Metal Mania", "Orbitron", sans-serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 400;
    letter-spacing: 1.3px;
  }

  .desktop-jukebox-deck span {
    font-size: 22px;
  }

  #home-category-yard-sale {
    overflow: visible;
  }
}

/* v145 — Kaiser’s 1960 Lead stacks crown Services and Workforce */
@media (min-width: 801px) {
  .desktop-amp-crown-shell {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(100% + 26px);
    aspect-ratio: 1400 / 552;
    max-width: none;
    margin: -13px -13px 11px;
    overflow: visible;
    border-radius: 24px 24px 6px 6px;
    filter:
      drop-shadow(-5px -3px 5px rgba(22, 229, 255, 0.66))
      drop-shadow(5px -3px 5px rgba(255, 35, 181, 0.58))
      drop-shadow(-8px 0 13px rgba(0, 212, 255, 0.52))
      drop-shadow(8px 0 14px rgba(255, 31, 175, 0.48))
      drop-shadow(0 8px 16px rgba(255, 174, 42, 0.34));
  }

  .desktop-amp-crown {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: inherit;
    /*
     * The bitmap is widened below, so pull its clipping mask inward by the
     * matching amount. This keeps the wider amplifier while removing the
     * black image ends that would otherwise protrude past the card.
     */
    clip-path: inset(0 3.75% 0 3.75% round 24px 24px 6px 6px);
    transform: scaleX(1.08);
    transform-origin: center bottom;
  }

  .desktop-amp-inner-aura {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: block;
    pointer-events: none;
    border-radius: inherit;
    background:
      radial-gradient(
        ellipse at 0 22%,
        rgba(28, 226, 255, 0.20),
        transparent 28%
      ),
      radial-gradient(
        ellipse at 100% 24%,
        rgba(255, 38, 181, 0.18),
        transparent 29%
      ),
      linear-gradient(
        90deg,
        rgba(26, 226, 255, 0.12),
        transparent 13% 87%,
        rgba(255, 39, 182, 0.12)
      ),
      linear-gradient(
        180deg,
        rgba(96, 228, 255, 0.10),
        transparent 17%
      );
    box-shadow:
      inset 7px 0 16px rgba(32, 225, 255, 0.18),
      inset -7px 0 17px rgba(255, 39, 182, 0.16),
      inset 0 7px 15px rgba(152, 214, 255, 0.10);
    mix-blend-mode: screen;
    opacity: 0.82;
  }

  .desktop-amp-stage-rail {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: -1px;
    left: 0;
    display: block;
    height: 2px;
    border-radius: 999px;
    background:
      linear-gradient(
        90deg,
        #30eaff 0%,
        #f7fbff 16%,
        #7f60ff 34%,
        #ff3ab9 51%,
        #f8fdff 67%,
        #18e7ff 83%,
        #ff45c3 100%
      );
    background-size: 240% 100%;
    box-shadow:
      0 0 3px rgba(255, 255, 255, 0.80),
      0 0 8px rgba(44, 232, 255, 0.72),
      -11px -7px 17px rgba(35, 225, 255, 0.38),
      11px -7px 18px rgba(255, 43, 184, 0.34),
      0 3px 13px rgba(255, 52, 188, 0.52);
    opacity: 0.88;
    animation: amp-stage-rail-flow 9s linear infinite;
  }

  .desktop-amp-stage-rail::before {
    content: "";
    position: absolute;
    right: 2%;
    bottom: -1px;
    left: 2%;
    height: 25px;
    pointer-events: none;
    border-radius: 50%;
    background:
      radial-gradient(
        ellipse at 18% 100%,
        rgba(38, 229, 255, 0.34),
        transparent 46%
      ),
      radial-gradient(
        ellipse at 82% 100%,
        rgba(255, 39, 183, 0.32),
        transparent 46%
      ),
      linear-gradient(
        90deg,
        rgba(33, 226, 255, 0.18),
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 41, 185, 0.18)
      );
    filter: blur(7px);
    transform: translateY(-2px);
    opacity: 0.88;
  }

  .desktop-amp-left-reflector {
    position: absolute;
    z-index: 7;
    top: -65px;
    left: -72px;
    display: block;
    width: 132px;
    height: 152px;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse at 69% 72%,
        rgba(255, 255, 255, 0.72) 0 2%,
        rgba(57, 232, 255, 0.42) 7%,
        rgba(118, 65, 255, 0.18) 18%,
        transparent 46%
      );
    mix-blend-mode: screen;
    animation: amp-left-reflector-breathe 5.6s ease-in-out infinite;
  }

  .desktop-amp-left-reflector::before,
  .desktop-amp-left-reflector::after {
    content: "";
    position: absolute;
    top: 0;
    width: 156px;
    height: 148px;
    clip-path: polygon(48% 0, 52% 0, 81% 100%, 0 100%);
    background:
      radial-gradient(
        circle at 50% 2%,
        #ffffff 0 3%,
        #d9fbff 5%,
        rgba(80, 235, 255, 0.94) 9%,
        rgba(121, 75, 255, 0.34) 20%,
        transparent 32%
      ),
      linear-gradient(
        180deg,
        rgba(225, 250, 255, 0.62) 0%,
        rgba(58, 226, 255, 0.30) 32%,
        rgba(112, 65, 255, 0.20) 68%,
        transparent 100%
      );
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.82))
      drop-shadow(0 0 9px rgba(48, 224, 255, 0.70));
    transform-origin: 50% 2%;
  }

  .desktop-amp-left-reflector::before {
    left: -27px;
    transform: rotate(-37deg);
  }

  .desktop-amp-left-reflector--right {
    top: -22px;
    height: 106px;
  }

  .desktop-amp-left-reflector--right::before {
    height: 96px;
    clip-path: polygon(48% 0, 52% 0, 82% 100%, 0 100%);
  }

  .desktop-amp-left-reflector::after {
    display: none;
  }

  @keyframes amp-left-reflector-breathe {
    0%,
    100% {
      opacity: 0.48;
      filter: brightness(0.90);
    }
    38% {
      opacity: 0.80;
      filter: brightness(1.08);
    }
    54% {
      opacity: 0.60;
      filter: brightness(0.96);
    }
    76% {
      opacity: 0.88;
      filter: brightness(1.15);
    }
  }

  @keyframes amp-stage-rail-flow {
    0% {
      background-position: 0% 50%;
      filter: brightness(0.90);
    }
    50% {
      background-position: 100% 50%;
      filter: brightness(1.13);
    }
    100% {
      background-position: 0% 50%;
      filter: brightness(0.90);
    }
  }

  .desktop-amp-crown-shell::before {
    content: "";
    position: absolute;
    z-index: 5;
    right: calc(8.5% + 1px);
    bottom: -5px;
    width: 3px;
    height: 31px;
    pointer-events: none;
    border-radius: 999px;
    background:
      linear-gradient(
        180deg,
        #171016 0%,
        #261622 40%,
        #4ceeff 82%,
        #fff7d7 100%
      );
    box-shadow:
      0 0 2px rgba(255, 255, 255, 0.42),
      0 0 6px rgba(53, 232, 255, 0.40),
      0 0 9px rgba(255, 47, 184, 0.22);
    transform: rotate(-3deg);
    transform-origin: 50% 100%;
  }

  .desktop-amp-crown-shell::after {
    content: "";
    position: absolute;
    z-index: 6;
    right: calc(8.5% - 8px);
    bottom: -8px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background:
      radial-gradient(circle, #fff 0 8%, #7ff8ff 9% 18%, transparent 20%),
      conic-gradient(
        from 18deg,
        transparent 0 8%,
        rgba(76, 239, 255, 0.95) 9% 13%,
        transparent 14% 31%,
        rgba(255, 40, 183, 0.88) 32% 36%,
        transparent 37% 58%,
        rgba(255, 195, 50, 0.90) 59% 63%,
        transparent 64% 100%
      );
    filter: blur(0.35px);
    box-shadow:
      0 0 5px rgba(255, 255, 255, 0.76),
      0 0 11px rgba(43, 235, 255, 0.76),
      0 0 18px rgba(255, 35, 178, 0.48);
    animation: amp-card-current 2.8s ease-in-out infinite;
  }

  @keyframes amp-card-current {
    0%, 100% {
      opacity: 0.58;
      transform: scale(0.78) rotate(0deg);
    }
    48% {
      opacity: 1;
      transform: scale(1.06) rotate(14deg);
    }
    62% {
      opacity: 0.72;
      transform: scale(0.88) rotate(20deg);
    }
  }

  .desktop-amp-deck-shell {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(100% + 26px);
    max-width: none;
    margin: 19px -13px -13px;
    overflow: visible;
    border-radius: 6px 6px 24px 24px;
    filter:
      drop-shadow(-8px 0 13px rgba(0, 212, 255, 0.52))
      drop-shadow(8px 0 14px rgba(255, 31, 175, 0.48))
      drop-shadow(0 8px 17px rgba(255, 174, 42, 0.38));
  }

  .desktop-amp-deck {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
    border-radius: inherit;
  }

  .desktop-amp-deck-shell::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    pointer-events: none;
    border-radius: inherit;
    background:
      linear-gradient(
        180deg,
        rgba(39, 230, 255, 0.24) 0%,
        rgba(119, 104, 255, 0.12) 4%,
        transparent 15% 84%,
        rgba(255, 50, 183, 0.12) 95%,
        rgba(41, 226, 255, 0.23) 100%
      );
    box-shadow:
      inset 0 8px 15px rgba(40, 226, 255, 0.19),
      inset 0 -9px 17px rgba(255, 44, 181, 0.17);
    mix-blend-mode: screen;
    opacity: 0.78;
  }

  .desktop-amp-deck-shell::before {
    content: "";
    position: absolute;
    z-index: 3;
    right: calc(11.5% - 8px);
    top: -8px;
    width: 19px;
    height: 19px;
    pointer-events: none;
    border-radius: 50%;
    background:
      radial-gradient(circle, #fff 0 8%, #7ff8ff 9% 18%, transparent 20%),
      conic-gradient(
        from 18deg,
        transparent 0 8%,
        rgba(76, 239, 255, 0.95) 9% 13%,
        transparent 14% 31%,
        rgba(255, 40, 183, 0.88) 32% 36%,
        transparent 37% 58%,
        rgba(255, 195, 50, 0.90) 59% 63%,
        transparent 64% 100%
      );
    filter: blur(0.35px);
    box-shadow:
      0 0 5px rgba(255, 255, 255, 0.76),
      0 0 11px rgba(43, 235, 255, 0.76),
      0 0 18px rgba(255, 35, 178, 0.48);
    animation: amp-card-current 2.8s ease-in-out infinite;
  }

  .desktop-amp-pedal-contact {
    position: absolute;
    z-index: 3;
    right: calc(13.5% - 8px);
    bottom: calc(15% - 9px);
    display: block;
    width: 19px;
    height: 19px;
    pointer-events: none;
    border-radius: 50%;
    background:
      radial-gradient(circle, #fff 0 8%, #7ff8ff 9% 18%, transparent 20%),
      conic-gradient(
        from 18deg,
        transparent 0 8%,
        rgba(76, 239, 255, 0.95) 9% 13%,
        transparent 14% 31%,
        rgba(255, 40, 183, 0.88) 32% 36%,
        transparent 37% 58%,
        rgba(255, 195, 50, 0.90) 59% 63%,
        transparent 64% 100%
      );
    filter: blur(0.35px);
    box-shadow:
      0 0 5px rgba(255, 255, 255, 0.76),
      0 0 11px rgba(43, 235, 255, 0.76),
      0 0 18px rgba(255, 35, 178, 0.48);
    animation: amp-card-current 2.8s ease-in-out infinite;
  }

  #home-category-services,
  #home-category-workforce,
  #home-category-resumes,
  #home-category-friends-love {
    overflow: visible;
  }

  #home-category-services,
  #home-category-workforce {
    padding-top: 13px;
  }

  #home-category-services > h2,
  #home-category-workforce > h2 {
    position: relative;
    z-index: 4;
    margin-top: 0;
  }
}

/* v144 — a small breath between the PC jukebox crown and Cribs sign */

/* v142 — let the illustrated crown merge into black; simplify the deck label */
@media (max-width: 800px) {
  .mobile-menu-category-list::before,
  .all-kats-grid::before {
    filter: none;
  }

  .mobile-menu-category-list::after,
  .all-kats-grid::after {
    content: "♫  KAISER'S  ♫";
  }
}

/* v158 — give the hamburger jukebox the same mobile atmosphere as All Kats */
@media (max-width: 800px) {
  .mobile-entertainment-menu {
    padding: 22px 12px 36px;
    background:
      radial-gradient(circle at 50% 8%, rgba(255, 0, 204, 0.19), transparent 31%),
      radial-gradient(circle at 18% 62%, rgba(0, 240, 255, 0.08), transparent 32%),
      linear-gradient(180deg, #1e0218 0%, #26051f 52%, #351234 100%);
  }

  .mobile-menu-jukebox-card {
    position: relative;
    width: min(100%, 520px);
    margin: 6px auto 0;
    padding: 17px 13px 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 25px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 34%),
      rgba(5, 5, 8, 0.985);
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.18),
      0 0 28px rgba(255, 0, 204, 0.24),
      0 0 42px rgba(0, 240, 255, 0.13);
  }

  .mobile-menu-topbar {
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 0 2px 13px;
    border-bottom: 0;
  }

  .mobile-menu-brand {
    gap: 11px;
    min-width: 0;
  }

  .mobile-menu-brand img {
    width: clamp(56px, 17vw, 66px);
    height: clamp(56px, 17vw, 66px);
  }

  .mobile-menu-brand strong {
    font-size: clamp(23px, 7.2vw, 31px);
    line-height: 0.9;
  }

  .mobile-menu-city {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 13px 0 19px;
  }

  .mobile-menu-city span {
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1;
  }

  .mobile-menu-city strong {
    margin-top: 7px;
    font-size: clamp(13px, 3.7vw, 17px);
    letter-spacing: 0.25em;
  }

  .mobile-menu-emporium-back {
    width: min(100%, 430px);
    margin: 17px auto 2px;
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .mobile-menu-footer {
    position: relative;
    width: min(100%, 520px);
    min-height: 390px;
    margin: 24px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 24px;
    overflow: hidden;
  }
}
