@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Space+Grotesk:wght@500;700&family=Press+Start+2P&family=Bungee:wght@400&display=swap');

:root {
  --background: #f7f2ea;
  --foreground: #111217;
  --panel: #ffffff;
  --panel-muted: #f3efe7;
  --accent: #1a63ff;
  --accent-soft: #e5edff;
  --border: #e6dfd4;
  /* Neon controls */
  --neon-core-alpha: 0.9;
  --neon-glow-alpha: 0.4;
  --neon-core-stroke: 0.32px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, #fff6e6 0%, rgba(255, 246, 230, 0) 45%),
    radial-gradient(circle at 90% 0%, #e9f0ff 0%, rgba(233, 240, 255, 0) 40%),
    radial-gradient(circle at 40% 90%, #f2e9ff 0%, rgba(242, 233, 255, 0) 45%),
    var(--background);
  color: var(--foreground);
  font-family: 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 32px;
  max-width: 220px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--foreground);
  display: block;
  border-radius: 2px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.menu-close {
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  margin-bottom: 12px;
  align-self: flex-start;
}

.badge {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.lang-select {
  width: auto !important;
  min-width: 88px !important;
  padding: 6px 8px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 10px 18px;
  font-weight: 700;
  background: white;
  cursor: pointer;
}

.button.primary {
  background: #111217;
  color: white;
  border-color: #111217;
}

.button.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

.notification-bell {
  position: relative;
}

.notify-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  margin-left: 8px;
}

.notification-item.unread {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft) inset;
}

.hero {
  display: grid;
  gap: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(15, 15, 15, 0.08);
}

.panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.panel-muted {
  background: var(--panel-muted);
}

.category-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  color: #6b7280;
}

.category-list {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.category-list a {
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px dashed transparent;
}

.category-list a:hover {
  border-color: var(--border);
  background: var(--panel-muted);
}

.category-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.category-list-scroll {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.category-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.category-group {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.category-group-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #475569;
  margin-bottom: 6px;
}

.category-group-title-link {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  padding: 4px 6px;
  border-radius: 8px;
}

.category-group-title-link:hover {
  background: var(--panel-muted);
}

.category-group .category-list {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 4px;
}

.category-group .category-list a {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}

.category-search-empty {
  grid-column: 1 / -1;
  padding: 8px 0;
}

#categoryGrid.category-grid-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.grid {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

#listingGrid.grid {
  justify-items: center;
}

#listingGrid.grid .card {
  width: 100%;
  max-width: 460px;
}

.listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-view-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: var(--panel-muted);
  border: 1px solid var(--border);
}

.listing-view-toggle button {
  border: none;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 12px;
}

.listing-view-toggle button.active {
  background: white;
  border: 1px solid var(--border);
}

.home-listings-layout {
  grid-template-columns: 260px 1fr;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tab {
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
}

.category-tab.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.listing-list {
  display: grid;
  gap: 10px;
}

.listing-pagination {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.listing-row {
  display: grid;
  grid-template-columns: 86px 1fr 152px;
  gap: 12px;
  align-items: stretch;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}

.listing-row-thumb-wrap {
  position: relative;
  width: 86px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}

.listing-row-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f1f5f9;
}

.listing-row-thumb-empty {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.listing-row .title {
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
}

.listing-row .title[class*="promo-title-"] {
  padding-inline: 5px;
  margin-inline: -5px;
}

.listing-row .title:not([class*="promo-title-"]) {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.listing-row-main {
  display: grid;
  gap: 4px;
  min-width: 0;
  align-content: center;
}

.listing-row .meta {
  font-size: 12px;
  color: #64748b;
}

.listing-row-status {
  margin-top: 2px;
  display: flex;
  align-items: center;
  width: 100%;
}

.listing-row-status-badge {
  max-width: 100%;
}

.listing-row-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.listing-row-status .auction-meta {
  margin-top: 0;
  padding: 3px 9px;
  font-size: 11px;
}

.listing-row-status .listing-promo-chip {
  font-size: 10px;
  padding: 3px 9px;
}

.listing-row-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  align-self: end;
}

.listing-row-price-line {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
}

.listing-row-right {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: end;
  align-items: start;
  min-width: 0;
}

.listing-row-type-chip {
  margin-left: 0;
  justify-self: end;
  margin-top: -12px;
  margin-right: -14px;
  border-radius: 0 14px 0 12px;
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 0.07em;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14);
}

.listing-row .price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.price-old {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2.5px;
  text-underline-offset: 2px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #7f1d1d;
  background: linear-gradient(180deg, #fee2e2, #fecaca);
  border: 1px solid #f87171;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.15), 0 6px 14px rgba(239, 68, 68, 0.18);
  animation: discount-pulse 1.2s steps(2, end) infinite;
}

.discount-badge-small {
  padding: 3px 7px;
  font-size: 9px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  width: 100%;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  font-size: 14px;
}

.locality-suggest-host {
  position: relative;
}

.locality-suggest-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 180;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  max-height: 240px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.locality-suggest-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  text-align: left;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
  cursor: pointer;
}

.locality-suggest-item:last-child {
  border-bottom: 0;
}

.locality-suggest-item span {
  font-size: 14px;
  color: #0f172a;
}

.locality-suggest-item small {
  font-size: 11px;
  color: #64748b;
}

.locality-suggest-item:active {
  background: #f1f5f9;
}

/* Compact search filters */
#searchForm .input,
#searchForm .select {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}

#searchForm .grid {
  gap: 10px;
}

.search-quick-row {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) minmax(170px, 1fr) minmax(210px, 1.2fr) auto auto;
  gap: 10px;
  align-items: center;
}

.search-filters-panel {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

#searchFiltersToggle {
  white-space: nowrap;
}

.card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 15, 15, 0.08);
  align-self: stretch;
}

.card-head {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 6.2rem;
}

.card-body {
  display: grid;
  align-content: start;
}

.card-footer {
  margin-top: auto;
  min-height: 2.2rem;
}

.card-thumb-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  isolation: isolate;
}

.card-thumb {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: block;
}

.promo-gallery-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}

.card-thumb-wrap[class*="promo-thumb-"]::before,
.card-thumb-wrap[class*="promo-thumb-"]::after,
.listing-row-thumb-wrap[class*="promo-thumb-"]::before,
.listing-row-thumb-wrap[class*="promo-thumb-"]::after,
.promo-gallery-thumb[class*="promo-thumb-"]::before,
.promo-gallery-thumb[class*="promo-thumb-"]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.card-thumb-wrap.promo-thumb-matrix::before,
.listing-row-thumb-wrap.promo-thumb-matrix::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 10, 4, 0.18), rgba(1, 10, 4, 0.66)),
    repeating-linear-gradient(90deg, rgba(34, 197, 94, 0.15) 0 1px, rgba(1, 10, 4, 0) 1px 14px),
    repeating-linear-gradient(180deg, rgba(187, 247, 208, 0.16) 0 2px, rgba(1, 10, 4, 0) 2px 8px);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: promo-thumb-matrix-rain 4.2s linear infinite;
}

.card-thumb-wrap.promo-thumb-matrix::after,
.listing-row-thumb-wrap.promo-thumb-matrix::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(134, 239, 172, 0.18), rgba(134, 239, 172, 0) 28%),
    linear-gradient(180deg, rgba(34, 197, 94, 0) 0%, rgba(34, 197, 94, 0.28) 48%, rgba(34, 197, 94, 0) 100%);
  background-size: 100% 100%, 100% 36%;
  background-position: 0 0, 0 -45%;
  background-repeat: no-repeat;
  opacity: 0.86;
  animation: promo-thumb-matrix-scan 3.1s ease-in-out infinite;
}


.card-thumb-empty {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
  min-height: 2.6em;
}

.card .card-title[class*="promo-title-"] {
  padding-inline: 5px;
  margin-inline: -5px;
}

.card .card-title.promo-title-marquee {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  max-height: none;
  min-height: 1.5em;
}

.card .card-title.promo-title-pacman,
.listing-row .title.promo-title-pacman {
  min-height: 1.6em;
  max-width: 100%;
}

.card .card-title.promo-title-pacman {
  margin-inline: -5px;
}

.listing-row .title.promo-title-pacman {
  margin-inline: -5px;
}

.card .card-title.promo-title-pacman-compact,
.listing-row .title.promo-title-pacman-compact {
  padding-left: 1.42em !important;
  line-height: 1.06;
  --promo-title-marquee-duration: 8.8s;
  contain: paint;
}

.card .card-title.promo-title-pacman-compact::after,
.listing-row .title.promo-title-pacman-compact::after {
  width: 0.64em !important;
  left: -0.03em;
  height: 0.96em;
}

.card .card-title.promo-title-pacman-compact .promo-title-track,
.listing-row .title.promo-title-pacman-compact .promo-title-track {
  top: 0 !important;
  bottom: 0;
}

.card .card-title.promo-title-pacman-compact::before,
.listing-row .title.promo-title-pacman-compact::before {
  animation-duration: 0.42s;
}

.account-card-title {
  display: block;
  max-width: 100%;
}

.account-card-title.promo-title-pacman-wide {
  width: 100%;
}

.account-card-title.promo-title-marquee,
.account-card-title.promo-title-turtle,
.account-card-title.promo-title-plane,
.account-card-title.promo-title-car,
.account-card-title.promo-title-car-wide {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 1.7em;
}

.card .card-title:not([class*="promo-title-"]) {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.card .card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 4.2em;
  min-height: 4.2em;
}

.card .price {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.auction-meta {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  background: #f3f4f6;
  color: #334155;
}

.card-auction {
  border-color: #22c55e;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.16);
}

.card-buy-now {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(26, 99, 255, 0.14);
}

.card-free {
  border-width: 2px;
  border-color: #d4a017;
  background: linear-gradient(180deg, #fff9e6, #ffffff);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.28);
}

.card-thumb-wrap-free {
  border-color: #d4a017;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.35);
}

.card-auction .price {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #86efac;
}

.card-buy-now .price {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.card-free .price {
  background: #fff4cc;
  color: #8a5a00;
  border: 1px solid #d4a017;
}

.listing-row-auction {
  border-color: #86efac;
  background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.listing-row-buy-now {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft), #ffffff);
}

/* Standard promo color frame: colored border only, without extra glow */
.card[class*="promo-frame-color-"] {
  box-shadow: 0 8px 20px rgba(15, 15, 15, 0.08) !important;
}

.listing-row[class*="promo-frame-color-"] {
  box-shadow: none !important;
  background: #ffffff !important;
}

.listing-row-free {
  border-width: 2px;
  border-color: #e0b84c;
  background: linear-gradient(180deg, #fff8dc, #ffffff);
}

.listing-row-auction .price {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #86efac;
}

.listing-row-buy-now .price {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.listing-row-free .price {
  background: #fff4cc;
  color: #8a5a00;
  border: 1px solid #d4a017;
}

.auction-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.buy-now-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}

.free-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #7a4b00;
  background: linear-gradient(180deg, #ffe7a6, #ffd564);
  border: 1px solid #c89214;
  box-shadow: inset 0 -1px 0 rgba(122, 75, 0, 0.22), 0 0 0 1px rgba(255, 214, 97, 0.2);
}

.thumb-chip {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  margin-left: 0;
  font-size: 10px;
  padding: 3px 9px;
  backdrop-filter: blur(2px);
}

.thumb-chip-row {
  top: 4px;
  left: 4px;
  font-size: 8px;
  padding: 2px 6px;
}

.winner-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #7a4b00;
  background: linear-gradient(180deg, #ffe7a6, #ffd564);
  border: 1px solid #c89214;
}

.free-heart-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 900;
  color: #fff8dc;
  background: linear-gradient(180deg, #ff7a18, #ff3d00);
  border: 1px solid #ffc14d;
  text-shadow: 0 0 6px rgba(255, 240, 180, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.25), 0 8px 18px rgba(255, 61, 0, 0.25);
  animation: free-heart-arcade 1.2s steps(2, end) infinite;
}

.free-heart-badge-row {
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 11px;
}

.auction-live-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.listing-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card .listing-promo-badge {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  justify-self: start;
  white-space: normal;
  line-height: 1.15;
  text-align: center;
  min-height: 2.7em;
  max-width: min(100%, 20rem);
  padding: 7px 12px;
  border-radius: 16px;
}

.listing-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.listing-promo-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-color-accent {
  border-color: var(--accent) !important;
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
}

.promo-color-green {
  border-color: #16a34a !important;
  background: #ecfdf5 !important;
  color: #166534 !important;
}

.promo-color-orange {
  border-color: #ea580c !important;
  background: #fff7ed !important;
  color: #9a3412 !important;
}

.promo-color-red {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
  color: #991b1b !important;
}

.promo-color-gold {
  border-color: #d4a017 !important;
  background: #fff4cc !important;
  color: #8a5a00 !important;
}

.promo-color-pink {
  border-color: #db2777 !important;
  background: #fdf2f8 !important;
  color: #9d174d !important;
}

.promo-color-cyan {
  border-color: #0891b2 !important;
  background: #ecfeff !important;
  color: #0e7490 !important;
}

.promo-color-violet {
  border-color: #7c3aed !important;
  background: #f5f3ff !important;
  color: #5b21b6 !important;
}

.promo-color-lime {
  border-color: #65a30d !important;
  background: #f7fee7 !important;
  color: #365314 !important;
}

.promo-color-fire {
  border-color: #ef4444 !important;
  background: linear-gradient(180deg, #fff2e2, #ffd8b0) !important;
  color: #9f1239 !important;
  font-family: "Courier New", ui-monospace, monospace;
  text-shadow: 0 0 6px rgba(255, 92, 0, 0.35);
}

.promo-color-bolt {
  border-color: #7c3aed !important;
  background: linear-gradient(180deg, #f4edff, #e9d5ff) !important;
  color: #5b21b6 !important;
  font-family: "Courier New", ui-monospace, monospace;
  text-shadow: 0 0 6px rgba(124, 58, 237, 0.35);
}

.promo-color-diamond {
  border-color: #0891b2 !important;
  background: linear-gradient(180deg, #ecfeff, #cffafe) !important;
  color: #0e7490 !important;
  font-family: "Courier New", ui-monospace, monospace;
  text-shadow: 0 0 6px rgba(6, 182, 212, 0.35);
}

.promo-color-star {
  border-color: #f59e0b !important;
  background: linear-gradient(180deg, #fff7d6, #fde68a) !important;
  color: #92400e !important;
  font-family: "Courier New", ui-monospace, monospace;
  text-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

.pixel-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  border: 1px solid #94a3b8;
  background: #f8fafc;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.2), 0 8px 18px rgba(15, 23, 42, 0.22);
}

.pixel-badge-inline {
  position: static;
  top: auto;
  right: auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 12px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.18), 0 2px 6px rgba(15, 23, 42, 0.16);
}

.gpsr-warning-panel {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(255, 247, 237, 0.96));
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.28),
    0 14px 30px rgba(245, 158, 11, 0.08);
}

.gpsr-warning-panel strong {
  color: #9a3412;
}

.gpsr-warning-panel .muted {
  color: #7c2d12;
}

.gpsr-detail-panel {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(255, 247, 237, 0.96));
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.24),
    0 10px 24px rgba(245, 158, 11, 0.08);
}

.gpsr-detail-panel h2,
.gpsr-detail-panel .detail-item-label {
  color: #9a3412;
}

.gpsr-detail-panel a {
  color: #b45309;
  font-weight: 700;
}

.pixel-badge-row {
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 11px;
}

.pixel-badge-with-heart {
  right: 40px;
}

.pixel-badge-row-with-heart {
  right: 28px;
}

.pixel-badge-smile {
  border-color: #fb7185;
  background: radial-gradient(circle at 35% 30%, #fff7ed 0%, #fdba74 50%, #fb7185 100%);
  color: #7c2d12;
  font-weight: 900;
  font-family: "Courier New", ui-monospace, monospace;
  letter-spacing: -0.08em;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(159, 18, 57, 0.18), 0 8px 18px rgba(251, 113, 133, 0.28);
  transform: rotate(-6deg);
  animation: pixel-flicker 1.05s steps(2, end) infinite;
}

.pixel-badge-xd {
  border-color: #facc15;
  background: radial-gradient(circle at 35% 30%, #fff9c4 0%, #fde047 45%, #facc15 100%);
  color: #7c2d12;
  font-weight: 900;
  font-family: "Courier New", ui-monospace, monospace;
  letter-spacing: -0.1em;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(161, 98, 7, 0.18), 0 8px 18px rgba(250, 204, 21, 0.35);
  transform: rotate(-8deg);
  animation: pixel-flicker 1.05s steps(2, end) infinite;
}

.pixel-badge-wink {
  border-color: #38bdf8;
  background: radial-gradient(circle at 35% 30%, #eff6ff 0%, #7dd3fc 50%, #38bdf8 100%);
  color: #0f172a;
  font-weight: 900;
  font-family: "Courier New", ui-monospace, monospace;
  letter-spacing: -0.08em;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(14, 116, 144, 0.18), 0 8px 18px rgba(56, 189, 248, 0.28);
  transform: rotate(6deg);
  animation: pixel-flicker 1.1s steps(2, end) infinite;
}

.pixel-badge-tongue {
  border-color: #c084fc;
  background: radial-gradient(circle at 35% 30%, #fdf4ff 0%, #f0abfc 52%, #c084fc 100%);
  color: #581c87;
  font-weight: 900;
  font-family: "Courier New", ui-monospace, monospace;
  letter-spacing: -0.08em;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(107, 33, 168, 0.18), 0 8px 18px rgba(192, 132, 252, 0.28);
  transform: rotate(-4deg);
  animation: pixel-flicker 1.15s steps(2, end) infinite;
}

.pixel-badge-grin {
  border-color: #f59e0b;
  background: radial-gradient(circle at 35% 30%, #fef9c3 0%, #fde047 52%, #f59e0b 100%);
  box-shadow: 0 0 0 1px rgba(146, 64, 14, 0.16), 0 8px 18px rgba(245, 158, 11, 0.28);
  transform: rotate(-5deg);
  animation: pixel-flicker 1.1s steps(2, end) infinite;
}

.pixel-badge-joy {
  border-color: #60a5fa;
  background: radial-gradient(circle at 35% 30%, #eff6ff 0%, #93c5fd 50%, #60a5fa 100%);
  box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.16), 0 8px 18px rgba(96, 165, 250, 0.26);
  transform: rotate(4deg);
  animation: pixel-flicker 1.08s steps(2, end) infinite;
}

.pixel-badge-cool {
  border-color: #38bdf8;
  background: radial-gradient(circle at 35% 30%, #ecfeff 0%, #67e8f9 50%, #38bdf8 100%);
  box-shadow: 0 0 0 1px rgba(14, 116, 144, 0.16), 0 8px 18px rgba(56, 189, 248, 0.26);
  transform: rotate(-3deg);
  animation: pixel-flicker 1.12s steps(2, end) infinite;
}

.pixel-badge-mindblown {
  border-color: #fb7185;
  background: radial-gradient(circle at 35% 30%, #fff1f2 0%, #fda4af 50%, #fb7185 100%);
  box-shadow: 0 0 0 1px rgba(190, 24, 93, 0.16), 0 8px 18px rgba(251, 113, 133, 0.3);
  transform: rotate(6deg);
  animation: pixel-flicker 1.02s steps(2, end) infinite;
}

.pixel-badge-love {
  border-color: #f472b6;
  background: radial-gradient(circle at 35% 30%, #fdf2f8 0%, #f9a8d4 50%, #f472b6 100%);
  box-shadow: 0 0 0 1px rgba(157, 23, 77, 0.16), 0 8px 18px rgba(244, 114, 182, 0.28);
  transform: rotate(-4deg);
  animation: pixel-flicker 1.08s steps(2, end) infinite;
}

.pixel-badge-devil {
  border-color: #a855f7;
  background: radial-gradient(circle at 35% 30%, #faf5ff 0%, #d8b4fe 48%, #a855f7 100%);
  box-shadow: 0 0 0 1px rgba(107, 33, 168, 0.16), 0 8px 18px rgba(168, 85, 247, 0.28);
  transform: rotate(5deg);
  animation: pixel-flicker 1.06s steps(2, end) infinite;
}

.pixel-badge-alien {
  border-color: #34d399;
  background: radial-gradient(circle at 35% 30%, #ecfdf5 0%, #86efac 48%, #34d399 100%);
  box-shadow: 0 0 0 1px rgba(5, 150, 105, 0.16), 0 8px 18px rgba(52, 211, 153, 0.28);
  transform: rotate(-6deg);
  animation: pixel-flicker 1.12s steps(2, end) infinite;
}

.pixel-badge-pad {
  border-color: #818cf8;
  background: radial-gradient(circle at 35% 30%, #eef2ff 0%, #a5b4fc 48%, #818cf8 100%);
  box-shadow: 0 0 0 1px rgba(67, 56, 202, 0.16), 0 8px 18px rgba(129, 140, 248, 0.28);
  transform: rotate(4deg);
  animation: pixel-flicker 1.1s steps(2, end) infinite;
}

.pixel-badge-fire {
  border-color: #fb7185;
  background: linear-gradient(180deg, #fff7ed, #fed7aa);
  color: #9f1239;
  animation: pixel-flicker 1.1s steps(2, end) infinite;
}

.pixel-badge-bolt {
  border-color: #c4b5fd;
  background: linear-gradient(180deg, #f5f3ff, #ddd6fe);
  color: #5b21b6;
  animation: pixel-flicker 1.3s steps(2, end) infinite;
}

.pixel-badge-diamond {
  border-color: #67e8f9;
  background: linear-gradient(180deg, #ecfeff, #cffafe);
  color: #0e7490;
  animation: pixel-flicker 1.5s steps(2, end) infinite;
}

.pixel-badge-star {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fff7d6, #fde68a);
  color: #92400e;
  animation: pixel-flicker 1.15s steps(2, end) infinite;
}

.pixel-badge-crown {
  border-color: #eab308;
  background: linear-gradient(180deg, #fefce8, #fde68a);
  color: #854d0e;
  animation: pixel-flicker 1.15s steps(2, end) infinite;
}

.pixel-badge-percent {
  border-color: #22c55e;
  background: linear-gradient(180deg, #ecfdf5, #bbf7d0);
  color: #166534;
  animation: pixel-flicker 1.1s steps(2, end) infinite;
}

.pixel-badge-up {
  border-color: #60a5fa;
  background: linear-gradient(180deg, #eff6ff, #bfdbfe);
  color: #1d4ed8;
  animation: pixel-flicker 1.1s steps(2, end) infinite;
}

.pixel-badge-rocket {
  border-color: #f97316;
  background: linear-gradient(180deg, #fff7ed, #fed7aa);
  color: #9a3412;
  animation: pixel-flicker 1.05s steps(2, end) infinite;
}

.pixel-badge-last {
  border-color: #dc2626;
  background: linear-gradient(180deg, #fef2f2, #fecaca);
  color: #991b1b;
  font-weight: 800;
  font-family: "Courier New", ui-monospace, monospace;
  animation: pixel-flicker 1.2s steps(2, end) infinite;
}

.promo-title-glow {
  text-shadow:
    0 0 calc(2px + var(--promo-title-glow-blur, 16px) * 0.12) rgba(59, 130, 246, calc(var(--promo-title-glow-alpha, var(--neon-glow-alpha)) * 0.5)),
    0 0 calc(5px + var(--promo-title-glow-blur, 16px) * 0.42) rgba(59, 130, 246, calc(var(--promo-title-glow-alpha, var(--neon-glow-alpha)) * 0.95)),
    0 0 calc(9px + var(--promo-title-glow-blur, 16px) * 0.85) rgba(59, 130, 246, calc(var(--promo-title-glow-alpha, var(--neon-glow-alpha)) * 0.75));
}

/* ===== NEON TITLES: clean rewrite ===== */
.promo-title-neon,
.promo-title-neon-red,
.promo-title-neon-purple,
.promo-title-neon-blue,
.promo-title-neon-green,
.promo-title-neon-gold,
.promo-title-neon-black,
.promo-title-neon-pink,
.promo-title-neon-cyan,
.promo-title-neon-orange,
.promo-title-neon-lime {
  --_neon-core-alpha: var(--promo-title-core-alpha, var(--neon-core-alpha));
  --_neon-glow-alpha: var(--promo-title-glow-alpha, var(--neon-glow-alpha));
  --_neon-core-stroke: var(--promo-title-core-stroke, var(--neon-core-stroke));
  --_neon-near: var(--_neon-glow-alpha);
  --_neon-far: clamp(0.03, calc(var(--_neon-glow-alpha) * 0.16), 0.10);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  paint-order: stroke fill;
  -webkit-text-stroke: calc(var(--_neon-core-stroke) + 0.12px) rgba(0, 0, 0, 0.48);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.34));
  animation: neon-title-flicker var(--promo-title-flicker-duration, 1.09s) steps(2,end) infinite;
}

.promo-title-neon,
.promo-title-neon-red {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(255,77,77, calc(var(--_neon-near) * 1.36)),
    0 0 7px rgba(239,68,68, calc(var(--_neon-near) * 1.12)),
    0 0 12px rgba(220,38,38, var(--_neon-far)),
    0 0 18px rgba(127,29,29, calc(var(--_neon-far) * 0.8));
}

.promo-title-neon-purple {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(196,181,253, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(168,85,247, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(126,34,206, var(--_neon-far)),
    0 0 18px rgba(88,28,135, calc(var(--_neon-far) * 0.8));
}

.promo-title-neon-blue {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(147,197,253, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(59,130,246, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(30,64,175, var(--_neon-far)),
    0 0 18px rgba(30,58,138, calc(var(--_neon-far) * 0.8));
}

.promo-title-neon-green {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(134,239,172, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(34,197,94, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(22,163,74, var(--_neon-far)),
    0 0 18px rgba(20,83,45, calc(var(--_neon-far) * 0.78));
}

.promo-title-neon-gold {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(253,224,71, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(234,179,8, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(202,138,4, var(--_neon-far)),
    0 0 18px rgba(113,63,18, calc(var(--_neon-far) * 0.78));
}

.promo-title-neon-black {
  color: #020617;
  -webkit-text-stroke: calc(var(--_neon-core-stroke) + 0.18px) rgba(255, 255, 255, 0.58);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.34));
  text-shadow:
    0 1px 0 rgba(255,255,255,0.82),
    0 0 1px rgba(255,255,255,0.68),
    0 0 2px rgba(125,211,252, calc(var(--_neon-near) * 0.9)),
    0 0 5px rgba(56,189,248, calc(var(--_neon-near) * 0.72)),
    0 0 9px rgba(14,116,144, calc(var(--_neon-far) * 0.9));
}

.promo-title-neon-pink {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(249,168,212, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(236,72,153, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(190,24,93, var(--_neon-far)),
    0 0 18px rgba(131,24,67, calc(var(--_neon-far) * 0.8));
}

.promo-title-neon-cyan {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(103,232,249, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(6,182,212, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(14,116,144, var(--_neon-far)),
    0 0 18px rgba(8,47,73, calc(var(--_neon-far) * 0.8));
}

.promo-title-neon-orange {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(253,186,116, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(249,115,22, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(194,65,12, var(--_neon-far)),
    0 0 18px rgba(124,45,18, calc(var(--_neon-far) * 0.8));
}

.promo-title-neon-lime {
  text-shadow:
    0 0 0 rgba(255,255,255,var(--_neon-core-alpha)),
    0 0 1px rgba(255,255,255,calc(var(--_neon-core-alpha) * 0.9)),
    0 0 3px rgba(190,242,100, calc(var(--_neon-near) * 1.34)),
    0 0 7px rgba(132,204,22, calc(var(--_neon-near) * 1.10)),
    0 0 12px rgba(77,124,15, var(--_neon-far)),
    0 0 18px rgba(63,98,18, calc(var(--_neon-far) * 0.8));
}

.promo-title-flicker {
  animation: neon-flicker-soft 1.9s steps(2,end) infinite;
}

.promo-title-gold {
  color: #854d0e;
  text-shadow: 0 0 8px rgba(234, 179, 8, 0.35);
}

.promo-title-arcade {
  font-family: "Courier New", monospace;
  color: #22c55e;
  text-shadow:
    0 0 6px rgba(34, 197, 94, 0.7),
    0 0 14px rgba(34, 197, 94, 0.5),
    0 0 var(--promo-glow-blur, 24px) rgba(34, 197, 94, var(--promo-glow-alpha, 0.65));
  animation: arcade-title var(--promo-title-flicker-duration, 1s) steps(2, end) infinite;
}

.promo-title-glitch {
  color: #fff;
  text-shadow:
    -2px 0 #ff00c8,
    2px 0 #00fff9,
    0 0 var(--promo-glow-blur, 24px) rgba(236, 72, 153, var(--promo-glow-alpha, 0.5));
  animation: title-glitch var(--promo-title-flicker-duration, 1.2s) infinite;
}

.promo-title-fire {
  color: #ffedd5;
  text-shadow:
    0 0 6px #fb923c,
    0 0 14px #f97316,
    0 0 22px #ea580c,
    0 0 var(--promo-glow-blur, 24px) rgba(251, 146, 60, var(--promo-glow-alpha, 0.65));
}

.promo-title-rainbow {
  background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 var(--promo-glow-blur, 20px) rgba(168, 85, 247, var(--promo-glow-alpha, 0.45));
}

.promo-title-boutique {
  color: #7a284b;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 0 14px rgba(244, 114, 182, 0.18);
}

.promo-title-rose {
  background: linear-gradient(90deg, #831843, #db2777 45%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(244, 114, 182, 0.16);
}

.promo-title-vogue {
  color: #1f2937;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.12);
}

.promo-title-editorial {
  color: #312e81;
  font-family: Baskerville, Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.72), 0 0 12px rgba(99, 102, 241, 0.12);
}

.promo-title-handmade {
  color: #166534;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: rotate(-1deg);
  text-shadow: 0 1px 0 rgba(255,255,255,0.72), 0 0 10px rgba(34, 197, 94, 0.14);
}

.promo-title-typewriter {
  color: #3f3f46;
  font-family: "Courier New", "Lucida Console", monospace;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.78);
}

.promo-title-poster {
  color: #7c2d12;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255,255,255,0.45), 0 0 12px rgba(249, 115, 22, 0.16);
}

.promo-title-fuse,
.promo-title-fuse-diamond,
.promo-title-fuse-gold,
.promo-title-fuse-platinum,
.promo-title-fuse-black,
.promo-title-fuse-bolt {
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  background-repeat: no-repeat;
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: promo-fuse-scan var(--promo-title-flicker-duration, 1.12s) linear infinite;
}

.promo-title-fuse {
  background-image:
    linear-gradient(
      90deg,
      #2b1208 0%,
      #7c2d12 18%,
      #f97316 34%,
      #fff7ed 50%,
      #f97316 66%,
      #7c2d12 82%,
      #2b1208 100%
    );
  text-shadow:
    0 0 6px rgba(249, 115, 22, 0.22),
    0 0 14px rgba(234, 88, 12, 0.18);
}

.promo-title-fuse-diamond {
  background-image:
    linear-gradient(
      90deg,
      #0f172a 0%,
      #0ea5e9 20%,
      #ecfeff 36%,
      #ffffff 50%,
      #67e8f9 64%,
      #0369a1 82%,
      #0f172a 100%
    );
  text-shadow:
    0 0 6px rgba(103, 232, 249, 0.22),
    0 0 14px rgba(14, 165, 233, 0.18);
}

.promo-title-fuse-gold {
  background-image:
    linear-gradient(
      90deg,
      #3f2a03 0%,
      #b45309 18%,
      #fde68a 34%,
      #fffbeb 50%,
      #f59e0b 66%,
      #92400e 82%,
      #3f2a03 100%
    );
  text-shadow:
    0 0 6px rgba(245, 158, 11, 0.24),
    0 0 14px rgba(202, 138, 4, 0.18);
}

.promo-title-fuse-platinum {
  background-image:
    linear-gradient(
      90deg,
      #111827 0%,
      #6b7280 18%,
      #e5e7eb 34%,
      #ffffff 50%,
      #d1d5db 66%,
      #4b5563 82%,
      #111827 100%
    );
  text-shadow:
    0 0 6px rgba(229, 231, 235, 0.22),
    0 0 14px rgba(107, 114, 128, 0.18);
}

.promo-title-fuse-black {
  background-image:
    linear-gradient(
      90deg,
      #020617 0%,
      #111827 18%,
      #94a3b8 34%,
      #f8fafc 50%,
      #64748b 66%,
      #0f172a 82%,
      #020617 100%
    );
  text-shadow:
    0 0 6px rgba(148, 163, 184, 0.24),
    0 0 14px rgba(15, 23, 42, 0.26);
}

.promo-title-fuse-bolt {
  background-image:
    linear-gradient(
      90deg,
      #312e81 0%,
      #2563eb 18%,
      #fef08a 34%,
      #ffffff 50%,
      #fde047 66%,
      #1d4ed8 82%,
      #312e81 100%
    );
  text-shadow:
    0 0 6px rgba(253, 224, 71, 0.24),
    0 0 14px rgba(37, 99, 235, 0.2);
}

.promo-title-fuse-emerald {
  background-image:
    linear-gradient(
      90deg,
      #052e16 0%,
      #166534 18%,
      #86efac 34%,
      #f0fdf4 50%,
      #22c55e 66%,
      #15803d 82%,
      #052e16 100%
    );
  text-shadow:
    0 0 6px rgba(134, 239, 172, 0.24),
    0 0 14px rgba(21, 128, 61, 0.18);
}

.promo-title-fuse-ruby {
  background-image:
    linear-gradient(
      90deg,
      #450a0a 0%,
      #991b1b 18%,
      #fca5a5 34%,
      #fff1f2 50%,
      #ef4444 66%,
      #b91c1c 82%,
      #450a0a 100%
    );
  text-shadow:
    0 0 6px rgba(252, 165, 165, 0.24),
    0 0 14px rgba(185, 28, 28, 0.18);
}

.promo-title-marquee {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  max-width: 100%;
}

.promo-title-marquee .promo-title-track {
  display: inline-block;
  padding-left: 100%;
  will-change: transform;
  animation: promo-title-marquee var(--promo-title-marquee-duration, 8.5s) linear infinite;
}

.promo-title-ticker-gold {
  color: #854d0e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(234, 179, 8, 0.16);
  --promo-title-marquee-duration: 9.5s;
}

.promo-title-ticker-platinum {
  color: #374151;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(156, 163, 175, 0.14);
  --promo-title-marquee-duration: 8.4s;
}

.promo-title-ticker-black {
  color: #f8fafc;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(56, 189, 248, 0.24),
    0 0 12px rgba(15, 23, 42, 0.28);
  --promo-title-marquee-duration: 7.4s;
}

.promo-title-ticker-neon {
  color: #f8fafc;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(34, 211, 238, 0.34),
    0 0 14px rgba(217, 70, 239, 0.24);
  --promo-title-marquee-duration: 6.9s;
}

.promo-title-ticker-pink {
  color: #831843;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(244, 114, 182, 0.26),
    0 0 12px rgba(190, 24, 93, 0.16);
  --promo-title-marquee-duration: 8.1s;
}

.promo-title-ticker-cyan {
  color: #0f172a;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.18px rgba(236, 254, 255, 0.78);
  text-shadow:
    0 1px 0 rgba(236, 254, 255, 0.94),
    0 0 1px rgba(34, 211, 238, 0.34),
    0 0 4px rgba(8, 145, 178, 0.2);
  --promo-title-marquee-duration: 7.1s;
}

.promo-title-ticker-lime {
  color: #ecfccb;
  font-family: "Bungee", "Trebuchet MS", sans-serif;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(190, 242, 100, 0.3),
    0 0 14px rgba(101, 163, 13, 0.22);
  --promo-title-marquee-duration: 6.6s;
}

.promo-title-ticker-violet {
  color: #3b0764;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.18px rgba(245, 243, 255, 0.72);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.78),
    0 0 1px rgba(196, 181, 253, 0.3),
    0 0 4px rgba(124, 58, 237, 0.18);
  --promo-title-marquee-duration: 7.7s;
}

.promo-title-ticker-fire {
  color: #7c2d12;
  font-family: "Bungee", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.16px rgba(255, 247, 237, 0.74);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.7),
    0 0 1px rgba(253, 186, 116, 0.32),
    0 0 4px rgba(234, 88, 12, 0.18);
  --promo-title-marquee-duration: 6.4s;
}

.promo-title-matrix {
  font-family: "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #dcfce7;
  background-image:
    linear-gradient(180deg, #dcfce7 0%, #86efac 24%, #22c55e 56%, #052e16 100%),
    repeating-linear-gradient(180deg, rgba(187, 247, 208, 0.18) 0 2px, rgba(22, 163, 74, 0) 2px 6px);
  background-size: 100% 100%, 100% 14px;
  background-position: 0 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.28));
  animation:
    promo-matrix-flicker var(--promo-title-flicker-duration, 1.1s) steps(2, end) infinite,
    promo-matrix-scan 3.4s linear infinite;
}

.promo-title-laser {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #7f1d1d 0%, #ef4444 18%, #ffffff 49%, #fca5a5 58%, #7f1d1d 100%);
  background-size: 230% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 7px rgba(248, 113, 113, 0.3));
  animation: promo-laser-scan var(--promo-title-flicker-duration, 1.3s) linear infinite;
}

.promo-title-terminal {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d9f99d;
  text-shadow:
    0 0 6px rgba(190, 242, 100, 0.32),
    0 0 12px rgba(77, 124, 15, 0.2);
  box-shadow: inset -0.14em 0 0 rgba(217, 249, 157, 0.92);
  padding-right: 0.18em;
  animation: promo-terminal-blink var(--promo-title-flicker-duration, 0.95s) steps(2, end) infinite;
}

.promo-title-hologram {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #67e8f9 0%, #ffffff 18%, #c084fc 48%, #f0abfc 72%, #67e8f9 100%);
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.26));
  animation: promo-hologram-shift var(--promo-title-flicker-duration, 1.2s) ease-in-out infinite;
}

.promo-title-pacman {
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.08;
  color: #f8fafc;
  font-family: "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(250, 204, 21, 0.24),
    0 0 10px rgba(37, 99, 235, 0.18);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.88));
  border-radius: 999px;
  padding: 0.1em 0.38em;
  padding-left: 1.72em;
  --promo-title-marquee-duration: 6.8s;
}

.promo-title-pacman .promo-title-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  padding-left: 100%;
  min-width: max-content;
  line-height: 1;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: promo-title-pacman-scroll var(--promo-title-marquee-duration, 7.4s) linear infinite;
}

.promo-title-pacman::before {
  content: "";
  position: absolute;
  left: 0.12em;
  top: 50%;
  width: 1.18em;
  height: 1.18em;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    conic-gradient(from 35deg, #facc15 0 35deg, transparent 35deg 90deg, #facc15 90deg 360deg);
  filter:
    drop-shadow(0 0 10px rgba(250, 204, 21, 0.42))
    drop-shadow(0 0 18px rgba(234, 179, 8, 0.22));
  z-index: 2;
  animation: promo-pacman-chomp 0.34s steps(2, end) infinite;
}

.promo-title-pacman::after {
  content: "";
  position: absolute;
  left: -0.08em;
  top: 50%;
  width: 0.82em;
  height: 1.06em;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.995) 0%,
    rgba(15, 23, 42, 0.995) 52%,
    rgba(15, 23, 42, 0.72) 72%,
    rgba(15, 23, 42, 0.14) 88%,
    rgba(15, 23, 42, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.promo-title-turtle,
.promo-title-plane,
.promo-title-car {
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.08;
  color: #f8fafc;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.12em 0.42em;
  padding-left: 2.1em;
}

.promo-title-turtle .promo-title-track,
.promo-title-plane .promo-title-track,
.promo-title-car .promo-title-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.38em;
  padding-left: 100%;
  min-width: max-content;
  line-height: 1;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.promo-title-turtle .promo-title-copy,
.promo-title-plane .promo-title-copy,
.promo-title-car .promo-title-copy {
  display: inline-block;
  line-height: 1;
}

.promo-title-lead {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.58em;
  height: 1.58em;
  line-height: 1;
}

.promo-title-lead-zolw::before,
.promo-title-lead-samolot::before,
.promo-title-lead-auto::before {
  display: block;
  line-height: 1;
  font-size: 1.22em;
}

.promo-title-lead-zolw::before {
  content: "🐢";
  filter:
    drop-shadow(0 0 6px rgba(134, 239, 172, 0.16))
    drop-shadow(0 0 10px rgba(22, 163, 74, 0.14));
}

.promo-title-lead-samolot::before {
  content: "✈";
  color: #e0f2fe;
  transform: rotate(-8deg);
  filter:
    drop-shadow(0 0 7px rgba(125, 211, 252, 0.24))
    drop-shadow(0 0 12px rgba(59, 130, 246, 0.16));
}

.promo-title-lead-zolw::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.26em);
  top: 50%;
  width: 1.05em;
  height: 0.92em;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(21, 58, 38, 0.98) 0%,
    rgba(21, 58, 38, 0.98) 54%,
    rgba(21, 58, 38, 0.7) 76%,
    rgba(21, 58, 38, 0) 100%
  );
  pointer-events: none;
}

.promo-title-lead-samolot::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.18em);
  top: 50%;
  width: 1.34em;
  height: 0.28em;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(224, 242, 254, 0.98) 0%,
    rgba(125, 211, 252, 0.58) 44%,
    rgba(56, 189, 248, 0.16) 76%,
    rgba(56, 189, 248, 0) 100%
  );
  pointer-events: none;
}

.promo-title-lead-zolw::before {
  content: "\01F422";
  filter: none;
}

.promo-title-lead-samolot::before {
  content: "\2708";
  color: #e0f2fe;
  transform: scaleX(-1) rotate(8deg);
  filter: none;
}

.promo-title-lead-auto::before {
  content: "\01F3CE";
  color: #fde68a;
  transform: scaleX(-1);
  filter: none;
}

.promo-title-turtle {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: linear-gradient(90deg, rgba(10, 35, 24, 0.96), rgba(21, 58, 38, 0.9));
  text-shadow:
    0 0 8px rgba(134, 239, 172, 0.18),
    0 0 12px rgba(22, 163, 74, 0.16);
  --promo-title-marquee-duration: 9.6s;
}

.promo-title-turtle .promo-title-track {
  animation: promo-title-turtle-scroll var(--promo-title-marquee-duration, 7.8s) linear infinite;
}

.promo-title-turtle::before {
  content: "🐢";
  position: absolute;
  left: 0.18em;
  top: 50%;
  font-size: 1.04em;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 2;
  filter:
    drop-shadow(0 0 6px rgba(134, 239, 172, 0.16))
    drop-shadow(0 0 10px rgba(22, 163, 74, 0.14));
  animation: promo-turtle-bob calc(var(--promo-title-flicker-duration, 1.1s) * 1.9) ease-in-out infinite;
}

.promo-title-turtle::after {
  content: "";
  position: absolute;
  left: 0.92em;
  top: 50%;
  width: 1.02em;
  height: 0.94em;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(21, 58, 38, 0.98) 0%,
    rgba(21, 58, 38, 0.98) 54%,
    rgba(21, 58, 38, 0.7) 76%,
    rgba(21, 58, 38, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.promo-title-plane {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: linear-gradient(90deg, rgba(14, 26, 46, 0.96), rgba(20, 36, 64, 0.9));
  text-shadow:
    0 0 8px rgba(147, 197, 253, 0.16),
    0 0 16px rgba(59, 130, 246, 0.14);
  --promo-title-marquee-duration: 6.2s;
}

.promo-title-plane .promo-title-track {
  animation: promo-title-plane-scroll var(--promo-title-marquee-duration, 6.2s) linear infinite;
}

.promo-title-car {
  font-family: "Bungee", "Trebuchet MS", sans-serif;
  background: linear-gradient(90deg, rgba(69, 10, 10, 0.96), rgba(153, 27, 27, 0.9));
  text-shadow:
    0 0 8px rgba(252, 165, 165, 0.14),
    0 0 16px rgba(248, 113, 113, 0.12);
  --promo-title-marquee-duration: 5.8s;
}

.promo-title-car .promo-title-track {
  animation: promo-title-plane-scroll var(--promo-title-marquee-duration, 5.8s) linear infinite;
}

.promo-title-speed-red,
.promo-title-speed-gold,
.promo-title-speed-cyan,
.promo-title-speed-violet,
.promo-title-speed-carbon {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.12em 0.5em;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-title-speed-red {
  color: #fff7f7;
  font-family: "Bungee", "Trebuchet MS", sans-serif;
  background: linear-gradient(90deg, rgba(69, 10, 10, 0.96), rgba(153, 27, 27, 0.92));
  text-shadow:
    0 0 8px rgba(252, 165, 165, 0.18),
    0 0 14px rgba(239, 68, 68, 0.14);
  --promo-title-marquee-duration: 6.1s;
}

.promo-title-speed-gold {
  color: #fff8e1;
  font-family: "Bungee", "Trebuchet MS", sans-serif;
  background: linear-gradient(90deg, rgba(66, 32, 6, 0.96), rgba(146, 64, 14, 0.92));
  text-shadow:
    0 0 8px rgba(253, 224, 71, 0.18),
    0 0 14px rgba(245, 158, 11, 0.14);
  --promo-title-marquee-duration: 6.5s;
}

.promo-title-speed-cyan {
  color: #ecfeff;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: linear-gradient(90deg, rgba(8, 47, 73, 0.96), rgba(14, 116, 144, 0.9));
  text-shadow:
    0 0 8px rgba(103, 232, 249, 0.18),
    0 0 14px rgba(34, 211, 238, 0.14);
  --promo-title-marquee-duration: 6.2s;
}

.promo-title-speed-violet {
  color: #faf5ff;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: linear-gradient(90deg, rgba(59, 7, 100, 0.96), rgba(109, 40, 217, 0.9));
  text-shadow:
    0 0 8px rgba(196, 181, 253, 0.18),
    0 0 14px rgba(167, 139, 250, 0.14);
  --promo-title-marquee-duration: 6.3s;
}

.promo-title-speed-carbon {
  color: #f8fafc;
  font-family: "Bungee", "Trebuchet MS", sans-serif;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96) 25%, rgba(30, 41, 59, 0.96) 25%, rgba(30, 41, 59, 0.96) 50%, rgba(15, 23, 42, 0.96) 50%, rgba(15, 23, 42, 0.96) 75%, rgba(30, 41, 59, 0.96) 75%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(51, 65, 85, 0.92));
  background-size: 16px 16px, 100% 100%;
  text-shadow:
    0 0 8px rgba(148, 163, 184, 0.16),
    0 0 14px rgba(15, 23, 42, 0.18);
  --promo-title-marquee-duration: 5.9s;
}

.promo-title-car-wide {
  padding-left: 2.5em;
  min-height: 2.05em;
  font-size: 1.02em;
}

.promo-title-car-wide .promo-title-lead {
  width: 1.8em;
  height: 1.8em;
}

.promo-title-plane::before {
  content: "✈";
  position: absolute;
  left: 0.24em;
  top: 50%;
  font-size: 1.05em;
  line-height: 1;
  color: #e0f2fe;
  transform: translateY(-50%) rotate(-8deg);
  z-index: 2;
  filter:
    drop-shadow(0 0 7px rgba(125, 211, 252, 0.24))
    drop-shadow(0 0 12px rgba(59, 130, 246, 0.16));
  animation: promo-plane-tilt calc(var(--promo-title-flicker-duration, 1.1s) * 1.35) ease-in-out infinite;
}

.promo-title-plane::after {
  content: "";
  position: absolute;
  left: 0.92em;
  top: 50%;
  width: 1.34em;
  height: 0.28em;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(224, 242, 254, 0.98) 0%,
    rgba(125, 211, 252, 0.58) 44%,
    rgba(56, 189, 248, 0.16) 76%,
    rgba(56, 189, 248, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.listing-row .title.promo-title-marquee,
h1.promo-title-pacman,
h1.promo-title-marquee {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  max-width: 100%;
}

h1.promo-title-marquee {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

h1.promo-title-pacman-wide {
  width: 100%;
  min-width: 0;
  padding-left: 2.02em !important;
  min-height: 1.72em;
  line-height: 1.08;
}

h1.promo-title-pacman-wide::after {
  width: 0.92em !important;
  left: -0.05em;
  height: 1.02em;
}

h1.promo-title-pacman-wide .promo-title-track {
  top: 0 !important;
  bottom: 0;
}

h1.promo-title-turtle,
h1.promo-title-plane,
h1.promo-title-car,
h1.promo-title-car-wide {
  width: 100%;
  min-width: 0;
}

.promo-title-turtle::before,
.promo-title-turtle::after,
.promo-title-plane::before,
.promo-title-plane::after {
  content: none !important;
  animation: none !important;
}

.promo-frame-glow,
.promo-frame-boutique,
.promo-frame-rose,
.promo-frame-pearl,
.promo-frame-neon,
.promo-frame-neon-purple,
.promo-frame-neon-blue,
.promo-frame-neon-green,
.promo-frame-neon-gold,
.promo-frame-neon-black,
.promo-frame-neon-pink,
.promo-frame-neon-cyan,
.promo-frame-neon-orange,
.promo-frame-neon-lime,
.promo-frame-rainbow,
.promo-frame-arcade,
.promo-frame-color-accent,
.promo-frame-color-green,
.promo-frame-color-orange,
.promo-frame-color-red,
.promo-frame-color-gold,
.promo-frame-color-pink,
.promo-frame-color-cyan,
.promo-frame-color-violet,
.promo-frame-color-lime {
  --_frame-alpha: var(--promo-frame-glow-alpha, 0.45);
}

.promo-frame-glow {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #3b82f6 !important;
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, calc(0.16 + var(--_frame-alpha) * 0.48)),
    0 0 calc(4px + var(--promo-frame-glow-blur, 20px) * 0.35) rgba(59, 130, 246, calc(var(--_frame-alpha) * 0.7)),
    0 0 calc(8px + var(--promo-frame-glow-blur, 20px) * 0.7) rgba(37, 99, 235, calc(var(--_frame-alpha) * 0.5)),
    0 0 calc(12px + var(--promo-frame-glow-blur, 20px) * 1.05) rgba(30, 64, 175, calc(var(--_frame-alpha) * 0.3)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-boutique {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #db2777 !important;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(135deg, #fbcfe8, #f9a8d4, #db2777);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 0 1px rgba(244, 114, 182, calc(0.16 + var(--_frame-alpha) * 0.42)),
    0 10px 22px rgba(190, 24, 93, 0.12) !important;
}

.promo-frame-rose {
  border-width: 2px !important;
  border-style: dashed !important;
  border-color: #f472b6 !important;
  box-shadow:
    0 0 0 1px rgba(244, 114, 182, calc(0.14 + var(--_frame-alpha) * 0.4)),
    0 0 14px rgba(251, 207, 232, calc(var(--_frame-alpha) * 0.4)),
    0 12px 24px rgba(15, 23, 42, 0.12) !important;
}

.promo-frame-pearl {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #d8b4fe !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #f8fafc, #fdf4ff, #e9d5ff) border-box;
  box-shadow:
    0 0 0 1px rgba(216, 180, 254, calc(0.15 + var(--_frame-alpha) * 0.34)),
    0 8px 18px rgba(216, 180, 254, 0.16) !important;
}

.promo-frame-neon,
.promo-frame-neon-purple,
.promo-frame-neon-blue,
.promo-frame-neon-green,
.promo-frame-neon-gold,
.promo-frame-neon-black,
.promo-frame-neon-pink,
.promo-frame-neon-cyan,
.promo-frame-neon-orange,
.promo-frame-neon-lime {
  border-width: 2px !important;
  border-style: solid !important;
  position: relative;
  isolation: isolate;
  animation: none !important;
}

.promo-frame-neon {
  border-color: #ef4444 !important;
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(248, 113, 113, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(239, 68, 68, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(185, 28, 28, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-purple {
  border-color: #a855f7 !important;
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(196, 181, 253, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(168, 85, 247, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(126, 34, 206, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-blue {
  border-color: #3b82f6 !important;
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(147, 197, 253, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(59, 130, 246, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(30, 64, 175, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-green {
  border-color: #22c55e !important;
  box-shadow:
    0 0 0 1px rgba(134, 239, 172, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(134, 239, 172, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(34, 197, 94, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(22, 163, 74, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-gold {
  border-color: #eab308 !important;
  box-shadow:
    0 0 0 1px rgba(253, 224, 71, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(253, 224, 71, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(234, 179, 8, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(202, 138, 4, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-black {
  border-color: #0f172a !important;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, calc(0.16 + var(--_frame-alpha) * 0.46)),
    0 0 8px rgba(125, 211, 252, calc(var(--_frame-alpha) * 0.72)),
    0 0 16px rgba(56, 189, 248, calc(var(--_frame-alpha) * 0.52)),
    0 0 26px rgba(30, 41, 59, calc(var(--_frame-alpha) * 0.3)),
    0 12px 24px rgba(15, 23, 42, 0.17) !important;
}

.promo-frame-neon-pink {
  border-color: #ec4899 !important;
  box-shadow:
    0 0 0 1px rgba(249, 168, 212, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(249, 168, 212, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(236, 72, 153, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(190, 24, 93, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-cyan {
  border-color: #06b6d4 !important;
  box-shadow:
    0 0 0 1px rgba(103, 232, 249, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(103, 232, 249, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(6, 182, 212, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(14, 116, 144, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-orange {
  border-color: #f97316 !important;
  box-shadow:
    0 0 0 1px rgba(253, 186, 116, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(253, 186, 116, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(249, 115, 22, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(194, 65, 12, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-neon-lime {
  border-color: #84cc16 !important;
  box-shadow:
    0 0 0 1px rgba(190, 242, 100, calc(0.16 + var(--_frame-alpha) * 0.52)),
    0 0 8px rgba(190, 242, 100, calc(var(--_frame-alpha) * 0.8)),
    0 0 16px rgba(132, 204, 22, calc(var(--_frame-alpha) * 0.58)),
    0 0 26px rgba(77, 124, 15, calc(var(--_frame-alpha) * 0.34)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

.promo-frame-rainbow {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: transparent !important;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(120deg, #ef4444, #f59e0b, #22c55e, #3b82f6, #a855f7);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, calc(0.14 + var(--_frame-alpha) * 0.48)),
    0 0 10px rgba(168, 85, 247, calc(var(--_frame-alpha) * 0.66)),
    0 0 18px rgba(79, 70, 229, calc(var(--_frame-alpha) * 0.42)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
  position: relative;
  isolation: isolate;
  animation: none !important;
}

.promo-frame-arcade {
  border-style: dashed !important;
  border-width: 2px !important;
  border-color: #a855f7 !important;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, calc(0.14 + var(--_frame-alpha) * 0.46)),
    0 0 10px rgba(168, 85, 247, calc(var(--_frame-alpha) * 0.62)),
    0 0 18px rgba(124, 58, 237, calc(var(--_frame-alpha) * 0.42)),
    0 12px 24px rgba(15, 23, 42, 0.16) !important;
  position: relative;
  isolation: isolate;
  animation: none !important;
}

.promo-frame-neon::after,
.promo-frame-neon-purple::after,
.promo-frame-neon-blue::after,
.promo-frame-neon-green::after,
.promo-frame-neon-gold::after,
.promo-frame-neon-black::after,
.promo-frame-neon-pink::after,
.promo-frame-neon-cyan::after,
.promo-frame-neon-orange::after,
.promo-frame-neon-lime::after,
.promo-frame-rainbow::after,
.promo-frame-arcade::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0.42;
  animation: promo-frame-overlay-flicker var(--promo-frame-flicker-duration, 1.18s) steps(2, end) infinite;
}

.promo-frame-neon::after {
  border: 2px solid rgba(248, 113, 113, 0.9);
  box-shadow:
    0 0 10px rgba(248, 113, 113, 0.8),
    0 0 20px rgba(239, 68, 68, 0.58),
    0 0 30px rgba(185, 28, 28, 0.34);
}

.promo-frame-neon-purple::after {
  border: 2px solid rgba(196, 181, 253, 0.92);
  box-shadow:
    0 0 10px rgba(196, 181, 253, 0.78),
    0 0 20px rgba(168, 85, 247, 0.56),
    0 0 30px rgba(126, 34, 206, 0.32);
}

.promo-frame-neon-blue::after {
  border: 2px solid rgba(147, 197, 253, 0.92);
  box-shadow:
    0 0 10px rgba(147, 197, 253, 0.78),
    0 0 20px rgba(59, 130, 246, 0.56),
    0 0 30px rgba(30, 64, 175, 0.32);
}

.promo-frame-neon-green::after {
  border: 2px solid rgba(134, 239, 172, 0.92);
  box-shadow:
    0 0 10px rgba(134, 239, 172, 0.78),
    0 0 20px rgba(34, 197, 94, 0.56),
    0 0 30px rgba(22, 163, 74, 0.32);
}

.promo-frame-neon-gold::after {
  border: 2px solid rgba(253, 224, 71, 0.92);
  box-shadow:
    0 0 10px rgba(253, 224, 71, 0.8),
    0 0 20px rgba(234, 179, 8, 0.58),
    0 0 30px rgba(202, 138, 4, 0.34);
}

.promo-frame-neon-black::after {
  border: 2px solid rgba(148, 163, 184, 0.86);
  box-shadow:
    0 0 10px rgba(125, 211, 252, 0.72),
    0 0 20px rgba(56, 189, 248, 0.5),
    0 0 28px rgba(30, 41, 59, 0.28);
}

.promo-frame-neon-pink::after {
  border: 2px solid rgba(249, 168, 212, 0.9);
  box-shadow:
    0 0 10px rgba(249, 168, 212, 0.8),
    0 0 20px rgba(236, 72, 153, 0.56),
    0 0 30px rgba(190, 24, 93, 0.32);
}

.promo-frame-neon-cyan::after {
  border: 2px solid rgba(103, 232, 249, 0.9);
  box-shadow:
    0 0 10px rgba(103, 232, 249, 0.8),
    0 0 20px rgba(6, 182, 212, 0.56),
    0 0 30px rgba(14, 116, 144, 0.32);
}

.promo-frame-neon-orange::after {
  border: 2px solid rgba(253, 186, 116, 0.92);
  box-shadow:
    0 0 10px rgba(253, 186, 116, 0.8),
    0 0 20px rgba(249, 115, 22, 0.58),
    0 0 30px rgba(194, 65, 12, 0.34);
}

.promo-frame-neon-lime::after {
  border: 2px solid rgba(190, 242, 100, 0.92);
  box-shadow:
    0 0 10px rgba(190, 242, 100, 0.8),
    0 0 20px rgba(132, 204, 22, 0.56),
    0 0 30px rgba(77, 124, 15, 0.32);
}

.promo-frame-rainbow::after {
  border: 2px solid transparent;
  background:
    linear-gradient(120deg, rgba(239, 68, 68, 0.95), rgba(245, 158, 11, 0.95), rgba(34, 197, 94, 0.95), rgba(59, 130, 246, 0.95), rgba(168, 85, 247, 0.95)) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.74),
    0 0 20px rgba(79, 70, 229, 0.46);
}

.promo-frame-arcade::after {
  border: 2px dashed rgba(196, 181, 253, 0.92);
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.74),
    0 0 20px rgba(124, 58, 237, 0.46);
}

.promo-frame-color-accent,
.promo-frame-color-green,
.promo-frame-color-orange,
.promo-frame-color-red,
.promo-frame-color-gold,
.promo-frame-color-pink,
.promo-frame-color-cyan,
.promo-frame-color-violet,
.promo-frame-color-lime {
  border-width: 2px !important;
  border-style: solid !important;
  box-shadow: none !important;
}

.promo-frame-color-accent { --_promo-frame-rgb: 26, 99, 255; border-color: #1a63ff !important; }
.promo-frame-color-green { --_promo-frame-rgb: 22, 163, 74; border-color: #16a34a !important; }
.promo-frame-color-orange { --_promo-frame-rgb: 234, 88, 12; border-color: #ea580c !important; }
.promo-frame-color-red { --_promo-frame-rgb: 220, 38, 38; border-color: #dc2626 !important; }
.promo-frame-color-gold { --_promo-frame-rgb: 212, 160, 23; border-color: #d4a017 !important; }
.promo-frame-color-pink { --_promo-frame-rgb: 219, 39, 119; border-color: #db2777 !important; }
.promo-frame-color-cyan { --_promo-frame-rgb: 8, 145, 178; border-color: #0891b2 !important; }
.promo-frame-color-violet { --_promo-frame-rgb: 124, 58, 237; border-color: #7c3aed !important; }
.promo-frame-color-lime { --_promo-frame-rgb: 101, 163, 13; border-color: #65a30d !important; }

@keyframes discount-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.04); }
}

@keyframes promo-thumb-matrix-rain {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 0, 0 28px; }
}

@keyframes promo-thumb-matrix-scan {
  0% { background-position: 0 0, 0 -45%; opacity: 0.74; }
  50% { background-position: 0 0, 0 125%; opacity: 0.94; }
  100% { background-position: 0 0, 0 -45%; opacity: 0.74; }
}


@keyframes neon-flicker-soft {
  0%, 100% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(1); }
  45% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(1.03); }
  46% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(0.99); }
  60% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(1.04); }
}

@keyframes neon-title-flicker {
  0%, 100% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(var(--promo-title-flicker-high, 1.12)) saturate(1.06);
    opacity: 1;
  }
  8% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.06)) saturate(1.16);
    opacity: 1;
  }
  12% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(var(--promo-title-flicker-low, 0.87)) saturate(0.9);
    opacity: 0.94;
  }
  18% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.03)) saturate(1.12);
    opacity: 1;
  }
  34% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.05)) saturate(0.94);
    opacity: 0.96;
  }
  42% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.08)) saturate(1.18);
    opacity: 1;
  }
  49% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-low, 0.87) - 0.04)) saturate(0.88);
    opacity: 0.92;
  }
  58% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(var(--promo-title-flicker-high, 1.12)) saturate(1.1);
    opacity: 1;
  }
  73% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.02)) saturate(0.92);
    opacity: 0.95;
  }
  82% {
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.1)) saturate(1.2);
    opacity: 1;
  }
}

@keyframes neon-flicker {
  0%, 100% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(1); }
  45% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(1.03); }
  46% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(0.99); }
  60% { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.34)) brightness(1.04); }
}

@keyframes neon-frame-flicker {
  0%, 100% { opacity: 1; transform: none; }
  50% { opacity: 1; transform: none; }
}

@keyframes arcade-title {
  0% { transform: translateY(0); }
  50% { transform: translateY(-1px); filter: brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.04)); }
  100% { transform: translateY(0); }
}

@keyframes title-glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); filter: brightness(var(--promo-title-flicker-high, 1.12)); }
  40% { transform: translate(1px, -1px); filter: brightness(var(--promo-title-flicker-low, 0.87)); }
  60% { transform: translate(-1px, 0); filter: brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.02)); }
  80% { transform: translate(1px, 1px); filter: brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.04)); }
  100% { transform: translate(0); }
}

@keyframes promo-fuse-scan {
  0% {
    background-position: 0% 50%;
    filter: brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.02)) saturate(0.95);
  }
  24% {
    background-position: 100% 50%;
    filter: brightness(var(--promo-title-flicker-high, 1.12)) saturate(1.18);
  }
  50% {
    background-position: 200% 50%;
    filter: brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.05)) saturate(0.96);
  }
  74% {
    background-position: 100% 50%;
    filter: brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.04)) saturate(1.16);
  }
  100% {
    background-position: 0% 50%;
    filter: brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.02)) saturate(0.95);
  }
}

@keyframes promo-title-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 1.2rem));
  }
}

@keyframes promo-title-pacman-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-100% - 1.2rem), 0, 0);
  }
}

@keyframes promo-title-turtle-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-100% - 1.2rem), 0, 0);
  }
}

@keyframes promo-title-plane-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-100% - 1.2rem), 0, 0);
  }
}

@keyframes promo-turtle-bob {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 1px));
  }
}

@keyframes promo-plane-tilt {
  0%, 100% {
    transform: translateY(-50%) rotate(-8deg);
  }
  50% {
    transform: translateY(calc(-50% - 1px)) rotate(-2deg);
  }
}

@keyframes promo-matrix-flicker {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.28)) brightness(var(--promo-title-flicker-high, 1.12));
  }
  22% {
    opacity: 0.96;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.34)) brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.08));
  }
  46% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(134, 239, 172, 0.42)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.05));
  }
  63% {
    opacity: 0.94;
    filter: drop-shadow(0 0 6px rgba(21, 128, 61, 0.26)) brightness(var(--promo-title-flicker-low, 0.87));
  }
}

@keyframes promo-matrix-scan {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 0 14px;
  }
}

@keyframes promo-laser-scan {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 7px rgba(248, 113, 113, 0.26)) brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.08));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 11px rgba(254, 202, 202, 0.42)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.06));
  }
  100% {
    background-position: 200% 50%;
    filter: drop-shadow(0 0 7px rgba(248, 113, 113, 0.26)) brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.08));
  }
}

@keyframes promo-terminal-blink {
  0%, 100% {
    box-shadow: inset -0.14em 0 0 rgba(217, 249, 157, 0.92);
    filter: brightness(var(--promo-title-flicker-high, 1.12));
  }
  35% {
    box-shadow: inset -0.14em 0 0 rgba(217, 249, 157, 0.08);
    filter: brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.04));
  }
  60% {
    box-shadow: inset -0.14em 0 0 rgba(217, 249, 157, 0.92);
    filter: brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.03));
  }
}

@keyframes promo-hologram-shift {
  0%, 100% {
    background-position: 0% 50%;
    transform: translateX(0);
    filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.26)) brightness(var(--promo-title-flicker-high, 1.12));
  }
  33% {
    background-position: 100% 50%;
    transform: translateX(-0.02em);
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.28)) brightness(calc(var(--promo-title-flicker-low, 0.87) + 0.08));
  }
  66% {
    background-position: 200% 50%;
    transform: translateX(0.02em);
    filter: drop-shadow(0 0 11px rgba(240, 171, 252, 0.3)) brightness(calc(var(--promo-title-flicker-high, 1.12) + 0.05));
  }
}

@keyframes promo-pacman-chomp {
  0%, 100% {
    background:
      conic-gradient(from 35deg, #facc15 0 35deg, transparent 35deg 90deg, #facc15 90deg 360deg);
  }
  50% {
    background:
      conic-gradient(from 12deg, #facc15 0 18deg, transparent 18deg 120deg, #facc15 120deg 360deg);
  }
}

@keyframes promo-frame-overlay-flicker {
  0%, 100% {
    opacity: calc((var(--promo-frame-flicker-high, 1.12) - 1) * 2.2 + 0.22);
  }
  16% {
    opacity: calc((var(--promo-frame-flicker-high, 1.12) - 1) * 2.5 + 0.24);
  }
  28% {
    opacity: calc((var(--promo-frame-flicker-low, 0.88) - 0.75) * 1.1);
  }
  46% {
    opacity: calc((var(--promo-frame-flicker-high, 1.12) - 1) * 2.7 + 0.18);
  }
  58% {
    opacity: calc((var(--promo-frame-flicker-low, 0.88) - 0.75) * 1.35);
  }
  76% {
    opacity: calc((var(--promo-frame-flicker-high, 1.12) - 1) * 2.35 + 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-title-neon,
  .promo-title-neon-red,
  .promo-title-neon-purple,
  .promo-title-neon-blue,
  .promo-title-neon-green,
  .promo-title-neon-gold,
  .promo-title-neon-black,
  .promo-title-neon-pink,
  .promo-title-neon-cyan,
  .promo-title-neon-orange,
  .promo-title-neon-lime,
  .promo-title-flicker,
  .promo-title-arcade,
  .promo-title-glitch,
  .promo-title-fuse,
  .promo-title-fuse-diamond,
  .promo-title-fuse-gold,
  .promo-title-fuse-platinum,
  .promo-title-fuse-black,
  .promo-title-fuse-bolt,
  .promo-title-fuse-emerald,
  .promo-title-fuse-ruby,
  .promo-title-matrix,
  .promo-title-laser,
  .promo-title-terminal,
  .promo-title-hologram,
  .promo-title-fire,
  .promo-title-rainbow,
  .promo-title-marquee .promo-title-track,
  .promo-title-pacman .promo-title-track,
  .promo-title-pacman::before,
  .promo-title-turtle .promo-title-track,
  .promo-title-plane .promo-title-track,
  .promo-title-turtle::before,
  .promo-title-plane::before,
  .card-thumb-wrap.promo-thumb-matrix::before,
  .card-thumb-wrap.promo-thumb-matrix::after,
  .listing-row-thumb-wrap.promo-thumb-matrix::before,
  .listing-row-thumb-wrap.promo-thumb-matrix::after,
  .promo-frame-neon,
  .promo-frame-neon-purple,
  .promo-frame-neon-blue,
  .promo-frame-neon-green,
  .promo-frame-neon-gold,
  .promo-frame-neon-black,
  .promo-frame-neon-pink,
  .promo-frame-neon-cyan,
  .promo-frame-neon-orange,
  .promo-frame-neon-lime,
  .promo-frame-rainbow,
  .promo-frame-arcade {
    animation: none !important;
  }
  .promo-frame-neon::after,
  .promo-frame-neon-purple::after,
  .promo-frame-neon-blue::after,
  .promo-frame-neon-green::after,
  .promo-frame-neon-gold::after,
  .promo-frame-neon-black::after,
  .promo-frame-neon-pink::after,
  .promo-frame-neon-cyan::after,
  .promo-frame-neon-orange::after,
  .promo-frame-neon-lime::after,
  .promo-frame-rainbow::after,
  .promo-frame-arcade::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

.listing-hero {
  border-width: 2px;
}

.listing-title-wrap {
  min-width: 0;
}

.listing-live {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.listing-ended {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.account-inline-box .panel {
  border-radius: 12px;
  margin-top: 8px;
}

.account-card-main {
  min-width: 0;
}

.account-card-price {
  flex: 0 0 auto;
}

.countdown-normal {
  background: #ecfdf5;
  color: #166534;
  border-color: #86efac;
}

.countdown-warn {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fdba74;
}

.countdown-critical {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fca5a5;
  animation: pulse-live 1.3s ease-in-out infinite;
}

.countdown-ended,
.countdown-invalid {
  background: #f1f5f9;
  color: #475569;
  border-color: #cbd5e1;
}

.countdown-arcade {
  font-family: 'Courier New', ui-monospace, monospace;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(34, 197, 94, 0.35);
  animation: arcade-tick 1s steps(2, end) infinite, arcade-glow 1.6s ease-in-out infinite;
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.28); }
  70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@keyframes arcade-tick {
  0% { filter: brightness(1); transform: translateY(0); }
  50% { filter: brightness(1.18); transform: translateY(-1px); }
  100% { filter: brightness(1); transform: translateY(0); }
}

@keyframes arcade-glow {
  0% { text-shadow: 0 0 4px rgba(34, 197, 94, 0.22); }
  50% { text-shadow: 0 0 10px rgba(34, 197, 94, 0.5); }
  100% { text-shadow: 0 0 4px rgba(34, 197, 94, 0.22); }
}

@keyframes free-heart-arcade {
  0% { transform: translateY(0) scale(1); filter: saturate(1) brightness(1); }
  50% { transform: translateY(-1px) scale(1.08); filter: saturate(1.25) brightness(1.1); }
  100% { transform: translateY(0) scale(1); filter: saturate(1) brightness(1); }
}

@keyframes pixel-flicker {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-1px); opacity: 0.9; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes promo-neon-pulse {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
  100% { filter: brightness(1); }
}

.footer {
  border-top: 1px solid var(--border);
  background: white;
  padding: 32px 24px;
  margin-top: 32px;
}

.seo-copy-block {
  display: grid;
  gap: 12px;
}

.seo-copy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.seo-copy-title {
  margin: 0;
  font-size: 16px;
}

.seo-copy-content {
  font-size: 0.85rem;
  color: #5b6472;
  line-height: 1.7;
}

.seo-copy-content p {
  margin: 0;
}

.seo-copy-content.is-collapsed {
  max-height: 3.6em;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0));
}

.seo-copy-toggle {
  border: none;
  background: transparent;
  padding: 0;
  color: #1d4ed8;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
}

.seo-copy-toggle:hover {
  text-decoration: underline;
}

.seo-copy-toggle:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 4px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 12px;
}

.legal-links a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
}

.legal-links a:hover {
  text-decoration: underline;
}

.muted {
  color: #64748b;
}

.listing-description {
  white-space: pre-line;
}

.consent-checklist {
  display: grid;
  gap: 10px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
  font-size: 14px;
}

.consent-item input[type="checkbox"] {
  margin-top: 2px;
}

.consent-item a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.consent-item a:hover {
  color: #1e40af;
}

.consent-item a:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 4px;
}

.promo-expanded {
  border-color: #86efac;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.14);
}

.promo-collapsed {
  border-color: #cbd5e1;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.promo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.promo-head .button {
  white-space: nowrap;
}

.promo-expanded #promoTextWrap,
.promo-expanded > .grid.grid-3 {
  gap: 12px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.detail-item {
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.detail-item-highlight {
  border-color: #86efac;
  background: linear-gradient(180deg, #ecfdf5, #f8fafc);
}

.detail-item-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
}

.detail-item-value {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.create-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
  align-items: start;
}

.create-layout .create-tips {
  position: sticky;
  top: 90px;
  align-self: start;
}

.create-tips a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.create-tips a:hover {
  color: #1e40af;
}

.create-tips a:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 4px;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.seller-card {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.favorite-btn {
  font-size: 18px;
  padding: 6px 12px;
}

.views-badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel-muted);
  border: 1px solid var(--border);
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 20px;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--border);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cookie-consent-card {
  width: min(560px, 100%);
  max-width: 100%;
  pointer-events: auto;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
  padding: 14px 16px;
  display: grid;
  gap: 12px;
}

.cookie-consent-copy {
  display: grid;
  gap: 10px;
}

.cookie-consent-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.cookie-consent-text {
  color: #334155;
  line-height: 1.45;
  font-size: 13px;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.cookie-consent-links a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent-action {
  min-width: 156px;
  padding: 10px 14px;
  justify-content: center;
}

.cookie-consent-settings {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.cookie-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  padding: 12px 14px;
  line-height: 1.45;
  color: #334155;
}

.cookie-consent-option input[type="checkbox"] {
  margin-top: 2px;
}

.cookie-consent-settings-actions {
  display: flex;
  justify-content: flex-end;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox .close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
}

.lightbox .nav.prev { left: 24px; }
.lightbox .nav.next { right: 24px; }

.lightbox .counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: white;
    border-left: 1px solid var(--border);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(110%);
    transition: transform 0.2s ease;
    z-index: 70;
  }
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-logo {
    max-width: 160px;
    max-height: 28px;
  }
  .header-inner .button {
    width: auto;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .menu-close {
    display: inline-flex;
  }
  body.menu-open .header-nav {
    transform: translateX(0);
  }
  body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open .header-nav {
    pointer-events: auto;
  }
  #listingGrid.grid {
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: center;
  }
  .card {
    width: 100%;
  }
  #listingGrid.grid .card {
    max-width: 460px;
    margin-inline: auto;
  }
  #myListings.grid {
    justify-items: center;
  }
  #myListings.grid > .panel {
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
    box-sizing: border-box;
    overflow: hidden;
  }
  .account-card-head {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
  }
  .account-card-price {
    justify-items: start !important;
  }
  .account-card-actions {
    grid-template-columns: 1fr !important;
  }
  .listing-row {
    grid-template-columns: 56px 1fr;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
  }
  .listing-row-right {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    margin-top: 2px;
  }
  .listing-row-type-chip {
    margin-top: 0;
    margin-right: 0;
    border-radius: 999px;
    justify-self: start;
    font-size: 8px;
    padding: 2px 7px;
  }
  .listing-row-price {
    grid-column: auto;
    justify-content: flex-end;
  }
  .listing-row .title {
    font-size: 14px;
  }
  .listing-row .meta {
    font-size: 11px;
  }
  .listing-row-status .auction-meta,
  .listing-row-status .listing-promo-chip {
    font-size: 10px;
    padding: 2px 7px;
  }
  .listing-row-price-line {
    gap: 5px;
  }
  .listing-row .price {
    font-size: 11px;
    padding: 5px 10px;
  }
  .discount-badge.discount-badge-small {
    font-size: 8px;
    padding: 2px 6px;
  }
  .listing-row-thumb {
    width: 100%;
    height: 100%;
  }
  .listing-row-thumb-wrap {
    width: 56px;
    height: 42px;
  }
  .card-thumb {
    height: 148px;
  }
  .listing-hero {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .listing-hero-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 10px !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .listing-title-wrap {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden;
  }
  .listing-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    line-height: 1.08;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .listing-hero h1.promo-title-marquee,
  .listing-hero h1.promo-title-pacman-wide,
  .listing-hero h1.promo-title-car-wide,
  .listing-hero h1.promo-title-turtle,
  .listing-hero h1.promo-title-plane,
  .listing-hero h1.promo-title-car,
  .listing-hero h1.promo-title-speed-red,
  .listing-hero h1.promo-title-speed-gold,
  .listing-hero h1.promo-title-speed-cyan,
  .listing-hero h1.promo-title-speed-violet,
  .listing-hero h1.promo-title-speed-carbon {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .listing-hero h1.promo-title-marquee .promo-title-track,
  .listing-hero h1.promo-title-pacman-wide .promo-title-track,
  .listing-hero h1.promo-title-car-wide .promo-title-track,
  .listing-hero h1.promo-title-turtle .promo-title-track,
  .listing-hero h1.promo-title-plane .promo-title-track,
  .listing-hero h1.promo-title-car .promo-title-track,
  .listing-hero h1.promo-title-speed-red .promo-title-track,
  .listing-hero h1.promo-title-speed-gold .promo-title-track,
  .listing-hero h1.promo-title-speed-cyan .promo-title-track,
  .listing-hero h1.promo-title-speed-violet .promo-title-track,
  .listing-hero h1.promo-title-speed-carbon .promo-title-track {
    max-width: none;
  }
  .listing-hero h1.promo-title-marquee:not(.promo-title-pacman) {
    position: relative;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    line-height: 1.08;
    min-height: 1.9em;
  }
  .listing-hero h1.promo-title-marquee:not(.promo-title-pacman) .promo-title-track {
    position: absolute !important;
    left: 0;
    top: 0;
    bottom: 0;
    display: inline-flex !important;
    align-items: center;
    gap: 0.38em;
    padding-left: 100% !important;
    min-width: max-content !important;
    will-change: transform;
  }
  .listing-hero h1.promo-title-ticker-gold,
  .listing-hero h1.promo-title-ticker-platinum,
  .listing-hero h1.promo-title-ticker-black,
  .listing-hero h1.promo-title-ticker-neon,
  .listing-hero h1.promo-title-ticker-pink,
  .listing-hero h1.promo-title-ticker-cyan,
  .listing-hero h1.promo-title-ticker-lime,
  .listing-hero h1.promo-title-ticker-violet,
  .listing-hero h1.promo-title-ticker-fire,
  .listing-hero h1.promo-title-speed-red,
  .listing-hero h1.promo-title-speed-gold,
  .listing-hero h1.promo-title-speed-cyan,
  .listing-hero h1.promo-title-speed-violet,
  .listing-hero h1.promo-title-speed-carbon,
  .listing-hero h1.promo-title-turtle,
  .listing-hero h1.promo-title-plane,
  .listing-hero h1.promo-title-car,
  .listing-hero h1.promo-title-car-wide {
    padding-top: 0.08em;
    padding-bottom: 0.08em;
  }
  .listing-hero .favorite-btn {
    align-self: flex-start;
    justify-self: start;
  }
  #gallery.grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #gallery .panel {
    padding: 0 !important;
    overflow: hidden;
  }
  .promo-gallery-thumb {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
  }
  .promo-gallery-thumb img {
    width: 100%;
    max-height: min(62vh, 420px);
    object-fit: contain;
    display: block;
    background: #fff;
  }
  .container {
    padding: 20px 16px;
  }
  .hero {
    padding: 20px;
  }
  .panel {
    padding: 18px;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  #categoryGrid.category-grid-layout {
    grid-template-columns: 1fr;
  }
  .category-list-scroll {
    max-height: none;
  }
  .search-quick-row {
    grid-template-columns: 1fr;
  }
  .search-quick-row .button {
    width: 100%;
  }
  .lightbox {
    padding: 10px;
  }
  .lightbox img {
    max-width: 96vw;
    max-height: 80vh;
  }
  .lightbox .nav.prev { left: 8px; }
  .lightbox .nav.next { right: 8px; }
  .lightbox .close {
    top: 12px;
    right: 12px;
  }
  #ogloszenia > .grid {
    grid-template-columns: 1fr;
  }
  .home-listings-layout {
    grid-template-columns: 1fr;
  }
#ogloszenia aside {
  display: none;
}
}

@media (max-width: 1100px) {
  .create-layout {
    grid-template-columns: 1fr !important;
  }
  .create-layout .create-tips {
    display: none;
  }
}

/* Category list styling (left sidebar) */
.category-tree-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  min-height: 42px;
}

.category-tree-link {
  width: 100%;
  justify-content: flex-start;
  border: none;
  background: transparent;
  padding: 0;
}

.category-tree-label {
  display: block;
  line-height: 1.25;
}

.category-tree-parent {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.category-tree-parent .category-tree-label {
  font-weight: 700;
  color: #1e3a8a;
}

.category-tree-parent.is-open {
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.16);
}

.category-tree-leaf {
  border-style: dashed;
  background: #ffffff;
}

.category-tree-leaf .category-tree-label {
  font-weight: 600;
  color: #334155;
}

.category-tree-toggle {
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 8px;
  border-color: #bfdbfe;
  color: #1d4ed8;
  background: #eff6ff;
  font-weight: 700;
}

.category-tree-dot {
  width: 28px;
  min-width: 28px;
  text-align: center;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1;
}

.category-tree-children {
  margin-top: 6px;
  margin-left: 6px;
  display: grid;
  gap: 6px;
  padding-left: 6px;
  border-left: 1px dashed #cbd5e1;
}

.warning-banner {
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.08);
  color: var(--foreground);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}

#reportDetail .button {
  min-height: 34px;
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 8px;
  }

  .cookie-consent-card {
    width: 100%;
    max-height: min(52vh, 420px);
    overflow: auto;
    padding: 12px 12px 14px;
    gap: 10px;
  }

  .cookie-consent-title {
    font-size: 15px;
  }

  .cookie-consent-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie-consent-action {
    flex: 1 1 100%;
    min-width: 0;
    padding: 9px 12px;
  }

  .cookie-consent-option {
    padding: 10px 12px;
    font-size: 13px;
  }

  .cookie-consent-settings-actions .button {
    width: 100%;
  }
}
