:root {
  --asphalt: #0b0b0b;
  --charcoal: #1f1f1f;
  --paper: #f2ead7;
  --yellow: #f6c141;
  --rust: #b3261e;
  --green: #1f5f3b;
  --teal: #167d7f;
  --pink: #d92b7f;
  --sky: #6ba6b8;

  --text: #f2ead7;
  --muted: rgba(242, 234, 215, 0.72);
  --ink: rgba(0, 0, 0, 0.62);
  --border: rgba(242, 234, 215, 0.14);
  --shadow: rgba(0, 0, 0, 0.65);

  --radius: 16px;
  --radius2: 20px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  --blackletter: "Old English Text MT", "Blackadder ITC", "UnifrakturCook", "UnifrakturMaguntia", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background: radial-gradient(1200px 700px at 18% 0%, rgba(107, 166, 184, 0.22), transparent 60%),
    radial-gradient(900px 640px at 92% 15%, rgba(246, 193, 65, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 65% 30%, rgba(22, 125, 127, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35) 2px, transparent 2px, transparent 12px);
  background-color: var(--asphalt);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='980' height='620' viewBox='0 0 980 620'%3E%3Cdefs%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='980' height='620' filter='url(%23n)' opacity='.22'/%3E%3Cg opacity='.55'%3E%3Cpath d='M70 140c120 60 180 20 270-38 80-52 170-74 270-38 70 26 140 18 210-18 80-42 160-54 250-6' stroke='%23f2ead7' stroke-opacity='.15' stroke-width='10' fill='none' stroke-linecap='round'/%3E%3Cpath d='M120 520c80-80 160-110 260-98 90 10 150-18 200-78 60-72 150-106 260-92 90 12 170-12 240-66' stroke='%236ba6b8' stroke-opacity='.16' stroke-width='8' fill='none' stroke-linecap='round'/%3E%3C/g%3E%3Cg opacity='.55'%3E%3Cpath d='M720 120c34-22 84-20 106 6 20 24 6 56-32 74-40 18-92 12-116-14-22-24-4-56 42-66z' fill='%23f6c141' fill-opacity='.10'/%3E%3Cpath d='M120 260c28-14 60-8 78 14 16 20 10 46-16 62-28 16-68 10-92-14-22-20-10-48 30-62z' fill='%23d92b7f' fill-opacity='.10'/%3E%3C/g%3E%3Cg opacity='.33'%3E%3Cpath d='M50 360h880' stroke='%23f2ead7' stroke-opacity='.10' stroke-width='2' stroke-dasharray='10 10'/%3E%3Cpath d='M210 0v620' stroke='%23f2ead7' stroke-opacity='.08' stroke-width='3'/%3E%3Cpath d='M820 0v620' stroke='%23f2ead7' stroke-opacity='.06' stroke-width='4'/%3E%3C/g%3E%3Cg opacity='.32'%3E%3Cpath d='M0 560c120-40 200-40 360 0s240 40 360 0 200-40 260 0' stroke='%23000000' stroke-opacity='.35' stroke-width='18' fill='none' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 980px 620px;
  background-repeat: repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), transparent 70%),
    radial-gradient(closest-side, rgba(0, 0, 0, 0.65), transparent 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
  background-size: 800px 600px, 900px 700px, 100% 100%;
  background-position: 20% 0%, 85% 30%, 0 0;
  background-repeat: no-repeat;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(242, 234, 215, 0.92);
  color: #111;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.82), rgba(11, 11, 11, 0.62));
  border-bottom: 1px solid rgba(242, 234, 215, 0.12);
}

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

.mark {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.mark-ink {
  font-family: var(--mono);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(242, 234, 215, 0.92);
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(242, 234, 215, 0.2);
  transform: rotate(-1deg);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35) inset, 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 0;
}

.nav-link {
  text-decoration: none;
  color: rgba(242, 234, 215, 0.92);
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(242, 234, 215, 0.14);
  background: rgba(0, 0, 0, 0.18);
}

.nav-link:hover,
.nav-link:focus-visible {
  outline: none;
  border-color: rgba(242, 234, 215, 0.26);
  background: rgba(0, 0, 0, 0.28);
  transform: rotate(-0.2deg);
}

.nav-link-escape {
  border-style: dashed;
  background: rgba(22, 125, 127, 0.18);
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 14px 36px;
}

.hero {
  padding: 22px 0 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

.hero-copy {
  padding: 18px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(242, 234, 215, 0.16);
  background: linear-gradient(135deg, rgba(242, 234, 215, 0.06), transparent 30%),
    linear-gradient(315deg, rgba(217, 43, 127, 0.10), transparent 40%),
    radial-gradient(closest-side at 20% 10%, rgba(246, 193, 65, 0.20), transparent 65%),
    rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22) inset, 0 20px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -80px;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
  background-image: radial-gradient(closest-side, rgba(246, 193, 65, 0.25), transparent 70%),
    radial-gradient(closest-side, rgba(107, 166, 184, 0.22), transparent 70%),
    radial-gradient(closest-side, rgba(217, 43, 127, 0.18), transparent 70%);
  background-size: 420px 420px, 520px 520px, 360px 360px;
  background-position: 10% 20%, 90% 10%, 60% 90%;
  background-repeat: no-repeat;
}

.hero-kicker {
  font-family: var(--mono);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242, 234, 215, 0.78);
}

.hero-title {
  margin: 10px 0 10px;
  font-family: var(--blackletter);
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.6px;
  color: var(--paper);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75), 0 0 24px rgba(246, 193, 65, 0.12);
  overflow-wrap: anywhere;
}

.hero-sub {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(242, 234, 215, 0.9);
}

.hero-body {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.microcopy {
  margin-top: 10px;
  min-height: 18px;
  font-size: 13px;
  color: rgba(242, 234, 215, 0.72);
  font-family: var(--mono);
}

.hero-visual {
  border-radius: var(--radius2);
  border: 1px solid rgba(242, 234, 215, 0.16);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    repeating-linear-gradient(45deg, rgba(242, 234, 215, 0.04), rgba(242, 234, 215, 0.04) 2px, transparent 2px, transparent 10px);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22) inset, 0 20px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  padding: 14px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
  background-image: radial-gradient(closest-side, rgba(107, 166, 184, 0.22), transparent 70%),
    radial-gradient(closest-side, rgba(31, 95, 59, 0.18), transparent 70%),
    radial-gradient(closest-side, rgba(246, 193, 65, 0.18), transparent 70%);
  background-size: 360px 360px, 420px 420px, 320px 320px;
  background-position: 20% 20%, 90% 40%, 50% 90%;
  background-repeat: no-repeat;
}

.crt {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(closest-side at 30% 20%, rgba(22, 125, 127, 0.35), rgba(0, 0, 0, 0.9)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.92));
  border: 1px solid rgba(242, 234, 215, 0.16);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35) inset, 0 18px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.crt-top {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 10px 12px;
  color: rgba(242, 234, 215, 0.75);
  border-bottom: 1px solid rgba(242, 234, 215, 0.12);
  background: rgba(0, 0, 0, 0.32);
}

.crt-screen {
  padding: 12px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(242, 234, 215, 0.9);
  min-height: 180px;
  position: relative;
}

.crt-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: repeating-linear-gradient(0deg, rgba(242, 234, 215, 0.06), rgba(242, 234, 215, 0.06) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
  animation: scan 4.2s linear infinite;
}

.crt-line {
  margin: 0 0 6px;
}

.crt-dim {
  color: rgba(242, 234, 215, 0.6);
}

.props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.prop {
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(242, 234, 215, 0.16);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25) inset;
  position: relative;
  overflow: hidden;
}

.prop::after {
  content: "";
  position: absolute;
  inset: -40px;
  opacity: 0.75;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(242, 234, 215, 0.12), transparent);
  animation: shimmer 3.4s ease-in-out infinite;
}

.prop-can {
  background-image: radial-gradient(circle at 30% 30%, rgba(217, 43, 127, 0.28), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(246, 193, 65, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
}

.prop-tape {
  background-image: repeating-linear-gradient(90deg, rgba(242, 234, 215, 0.08), rgba(242, 234, 215, 0.08) 6px, transparent 6px, transparent 14px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  animation: wobble 5.6s ease-in-out infinite;
}

.prop-sticker {
  background-image: linear-gradient(135deg, rgba(31, 95, 59, 0.22), rgba(22, 125, 127, 0.10)),
    repeating-linear-gradient(135deg, rgba(242, 234, 215, 0.05), rgba(242, 234, 215, 0.05) 3px, transparent 3px, transparent 9px);
}

.prop-speaker {
  background-image: radial-gradient(circle at 50% 50%, rgba(242, 234, 215, 0.09), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 42%, transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 22%, transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
  animation: pulse 1.9s ease-in-out infinite;
}

.tool {
  padding: 8px 0 8px;
}

.tool-shell {
  border-radius: 22px;
  border: 1px solid rgba(242, 234, 215, 0.18);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)),
    repeating-linear-gradient(135deg, rgba(242, 234, 215, 0.04), rgba(242, 234, 215, 0.04) 2px, transparent 2px, transparent 12px);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.26) inset, 0 24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
}

.tool-shell::before {
  content: "";
  position: absolute;
  inset: -60px;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: screen;
  background-image: radial-gradient(closest-side, rgba(246, 193, 65, 0.20), transparent 70%),
    radial-gradient(closest-side, rgba(217, 43, 127, 0.16), transparent 70%),
    radial-gradient(closest-side, rgba(22, 125, 127, 0.16), transparent 70%);
  background-size: 480px 480px, 360px 360px, 420px 420px;
  background-position: 12% 10%, 92% 18%, 60% 95%;
  background-repeat: no-repeat;
}

.tool-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(242, 234, 215, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.tool-title {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 12px;
}

.tool-badge {
  font-family: var(--mono);
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px dashed rgba(242, 234, 215, 0.18);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(242, 234, 215, 0.85);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(242, 234, 215, 0.14);
  position: relative;
  z-index: 1;
}

.tab {
  appearance: none;
  border: 1px solid rgba(242, 234, 215, 0.16);
  background: rgba(242, 234, 215, 0.08);
  color: rgba(242, 234, 215, 0.92);
  padding: 12px 12px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  transform: rotate(-0.6deg);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22) inset;
}

.tab::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  opacity: 0.65;
  background: radial-gradient(circle at 40% 40%, rgba(242, 234, 215, 0.7), transparent 55%);
  filter: blur(0.2px);
}

.tab:hover,
.tab:focus-visible {
  outline: none;
  border-color: rgba(242, 234, 215, 0.26);
  background: rgba(242, 234, 215, 0.12);
  transform: rotate(-0.2deg) translateY(-1px);
}

.tab.is-active {
  border-color: rgba(246, 193, 65, 0.55);
  background: linear-gradient(135deg, rgba(246, 193, 65, 0.26), rgba(217, 43, 127, 0.16));
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.28) inset, 0 0 0 2px rgba(217, 43, 127, 0.08);
}

.panel {
  display: none;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.panel.is-active {
  display: block;
}

.label {
  display: block;
  margin: 10px 0 6px;
  color: rgba(242, 234, 215, 0.78);
  font-family: var(--mono);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
}

.hint {
  margin-top: 8px;
  color: rgba(242, 234, 215, 0.65);
  font-size: 13px;
  font-family: var(--mono);
}

.input,
.textarea,
.select {
  width: 100%;
  max-width: 100%;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(242, 234, 215, 0.16);
  border-radius: 16px;
  color: rgba(242, 234, 215, 0.95);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.28) inset;
  font-family: var(--sans);
}

.textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.45;
}

.flyer {
  background: linear-gradient(180deg, rgba(242, 234, 215, 0.92), rgba(242, 234, 215, 0.80));
  color: #111;
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.16) inset, 0 18px 60px rgba(0, 0, 0, 0.35);
  font-family: var(--sans);
}

.select {
  appearance: none;
  background: rgba(0, 0, 0, 0.48);
}

.select option {
  background: #0b0b0b;
  color: rgba(242, 234, 215, 0.95);
}

.select option:checked {
  background: #1a6cd6;
  color: #fff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  min-width: 0;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
  align-items: end;
}

.btn {
  appearance: none;
  border: 1px solid rgba(242, 234, 215, 0.18);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(242, 234, 215, 0.95);
  padding: 12px 14px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25) inset;
  position: relative;
  min-width: 0;
  white-space: normal;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  border-color: rgba(242, 234, 215, 0.28);
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(246, 193, 65, 0.48);
  background: linear-gradient(135deg, rgba(246, 193, 65, 0.24), rgba(217, 43, 127, 0.16));
}

.btn-secondary {
  border-style: dashed;
  background: rgba(242, 234, 215, 0.08);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -20px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 30% 40%, rgba(217, 43, 127, 0.35), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(246, 193, 65, 0.28), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(22, 125, 127, 0.22), transparent 55%);
  filter: blur(10px);
  transition: opacity 180ms ease;
}

.btn:hover::after {
  opacity: 0.65;
}

.link {
  color: rgba(246, 193, 65, 0.95);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--mono);
  overflow-wrap: anywhere;
}

.link:hover,
.link:focus-visible {
  outline: none;
  text-decoration: underline;
}

.status {
  color: rgba(242, 234, 215, 0.72);
  font-size: 13px;
  font-family: var(--mono);
}

.preview {
  margin-top: 12px;
}

.frame {
  width: 100%;
  height: 520px;
  border: 1px solid rgba(242, 234, 215, 0.18);
  border-radius: 18px;
  background: #0b0b0b;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25) inset;
}

.drop {
  border-radius: 20px;
  border: 1px dashed rgba(242, 234, 215, 0.24);
  background: linear-gradient(135deg, rgba(242, 234, 215, 0.08), rgba(0, 0, 0, 0.32)),
    repeating-linear-gradient(135deg, rgba(242, 234, 215, 0.05), rgba(242, 234, 215, 0.05) 3px, transparent 3px, transparent 10px);
  padding: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.drop:hover,
.drop:focus-visible {
  outline: none;
  border-color: rgba(246, 193, 65, 0.45);
}

.drop.is-dragover {
  border-color: rgba(217, 43, 127, 0.6);
  background: linear-gradient(135deg, rgba(217, 43, 127, 0.20), rgba(0, 0, 0, 0.32));
}

.drop-title {
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 16px;
}

.drop-sub {
  margin-top: 6px;
  color: rgba(242, 234, 215, 0.72);
  font-family: var(--mono);
  font-size: 13px;
}

.drop-meta {
  margin-top: 10px;
  font-family: var(--mono);
  color: rgba(242, 234, 215, 0.85);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.file {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.section {
  padding: 18px 0;
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: rgba(242, 234, 215, 0.85);
}

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

.cardx {
  border-radius: 20px;
  border: 1px solid rgba(242, 234, 215, 0.14);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    repeating-linear-gradient(135deg, rgba(242, 234, 215, 0.04), rgba(242, 234, 215, 0.04) 2px, transparent 2px, transparent 12px);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22) inset, 0 18px 60px rgba(0, 0, 0, 0.42);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.cardx > *,
.warn-inner > *,
.hero-copy > * {
  position: relative;
  z-index: 1;
}

.cardx::before {
  content: "";
  position: absolute;
  inset: -60px;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
  background-image: radial-gradient(closest-side, rgba(246, 193, 65, 0.16), transparent 70%),
    radial-gradient(closest-side, rgba(22, 125, 127, 0.14), transparent 70%),
    radial-gradient(closest-side, rgba(217, 43, 127, 0.12), transparent 70%);
  background-size: 320px 320px, 360px 360px, 300px 300px;
  background-position: 12% 20%, 86% 10%, 60% 100%;
  background-repeat: no-repeat;
}

.cardx-title {
  font-weight: 1000;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 13px;
  font-family: var(--mono);
}

.cardx-k {
  margin-top: 10px;
  font-family: var(--mono);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(242, 234, 215, 0.7);
}

.cardx-v {
  margin-top: 6px;
  color: rgba(242, 234, 215, 0.92);
  line-height: 1.4;
}

.cardx-v-after {
  color: rgba(242, 234, 215, 0.92);
  border-left: 3px solid rgba(246, 193, 65, 0.55);
  padding-left: 10px;
}

.warn {
  padding: 18px 0;
}

.warn-inner {
  border-radius: 22px;
  border: 2px dashed rgba(242, 234, 215, 0.2);
  background: linear-gradient(180deg, rgba(242, 234, 215, 0.08), rgba(0, 0, 0, 0.35)),
    repeating-linear-gradient(135deg, rgba(242, 234, 215, 0.05), rgba(242, 234, 215, 0.05) 3px, transparent 3px, transparent 10px);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25) inset, 0 20px 70px rgba(0, 0, 0, 0.5);
  padding: 16px;
}

.warn-title {
  font-family: var(--mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(242, 234, 215, 0.92);
}

.warn-text {
  margin: 10px 0 0;
  color: rgba(242, 234, 215, 0.82);
  line-height: 1.55;
}

.footer {
  margin-top: 22px;
  padding: 16px 0 22px;
  position: relative;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(242, 234, 215, 0.12);
  padding-top: 14px;
}

.footer-copy {
  color: rgba(242, 234, 215, 0.75);
  font-family: var(--mono);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.disruptarian-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-family: var(--mono);
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 234, 215, 0.75);
  background: rgba(0, 0, 0, 0.22);
  border: 1px dashed rgba(242, 234, 215, 0.18);
  border-radius: 18px 0 0 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22) inset;
  transform: rotate(-2deg);
  filter: contrast(1.05) saturate(0.95);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75), -1px 0 0 rgba(0, 0, 0, 0.35);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.loader.is-active {
  display: flex;
}

.loader-inner {
  border-radius: 22px;
  border: 1px solid rgba(242, 234, 215, 0.18);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.28) inset, 0 22px 70px rgba(0, 0, 0, 0.65);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.loader-tape {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(242, 234, 215, 0.16);
  background-image: radial-gradient(circle at 50% 50%, rgba(242, 234, 215, 0.12), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 42%, transparent 46%),
    repeating-linear-gradient(90deg, rgba(242, 234, 215, 0.08), rgba(242, 234, 215, 0.08) 6px, transparent 6px, transparent 14px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22) inset;
}

.loader-text {
  font-family: var(--mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(242, 234, 215, 0.88);
}

.paywall {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.paywall.is-active {
  display: flex;
}

.paywall-card {
  width: min(460px, 100%);
  border: 2px solid rgba(242, 234, 215, 0.22);
  border-radius: 10px;
  background:
    repeating-linear-gradient(-8deg, rgba(242, 234, 215, 0.06) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, rgba(170, 43, 34, 0.22), rgba(20, 77, 54, 0.24)),
    #080807;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.55), 0 30px 80px rgba(0, 0, 0, 0.62);
  padding: 18px;
  position: relative;
}

.paywall-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid rgba(242, 234, 215, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--paper);
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-weight: 900;
}

.paywall-kicker {
  font-family: var(--mono);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.paywall-card h2 {
  margin: 8px 42px 8px 0;
  font-size: 28px;
  line-height: 1.1;
}

@keyframes scan {
  0% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(4px);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-40px) rotate(-12deg);
    opacity: 0.45;
  }
  50% {
    transform: translateX(40px) rotate(-12deg);
    opacity: 0.75;
  }
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
}

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

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

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .frame {
    height: 440px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crt-screen::after,
  .prop::after,
  .prop-tape,
  .prop-speaker,
  .loader-tape {
    animation: none !important;
  }
  .btn::after {
    transition: none;
  }
  .btn:hover::after {
    opacity: 0;
  }
}

/* 2026 Shizzolator visual pass: LBC mixtape flyer meets sun-faded ska-punk beach texture. */
:root {
  --asphalt: #080807;
  --paper: #f4ead1;
  --yellow: #f0bf39;
  --rust: #aa2b22;
  --green: #144d36;
  --teal: #138082;
  --pink: #d52b72;
  --sky: #78b7bd;
  --radius: 10px;
  --radius2: 12px;
}

body {
  background:
    linear-gradient(90deg, rgba(244, 234, 209, 0.04) 0 1px, transparent 1px 22px),
    linear-gradient(0deg, rgba(244, 234, 209, 0.035) 0 1px, transparent 1px 22px),
    radial-gradient(900px 520px at 12% 4%, rgba(240, 191, 57, 0.2), transparent 62%),
    radial-gradient(700px 460px at 86% 12%, rgba(19, 128, 130, 0.2), transparent 62%),
    linear-gradient(180deg, #11100d, #070706 62%, #0b0b09);
}

.site-header {
  background:
    repeating-linear-gradient(45deg, rgba(244, 234, 209, 0.08) 0 8px, rgba(0, 0, 0, 0.04) 8px 16px),
    rgba(8, 8, 7, 0.9);
}

.mark-ink,
.nav-link,
.tab,
.btn,
.tool-badge,
.link,
.section-title,
.footer-copy,
.drop-meta,
.label {
  letter-spacing: 0;
}

.mark-ink {
  border-radius: 6px;
  border: 2px solid rgba(244, 234, 209, 0.26);
  background: #0b0b09;
  color: var(--yellow);
  text-shadow: 2px 2px 0 rgba(170, 43, 34, 0.75);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 18px;
}

.hero-copy,
.hero-visual,
.tool-shell,
.cardx,
.warn-inner {
  border-radius: 10px;
  border: 2px solid rgba(244, 234, 209, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    8px 8px 0 rgba(0, 0, 0, 0.55),
    0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  background:
    linear-gradient(135deg, rgba(244, 234, 209, 0.16), rgba(244, 234, 209, 0.04) 34%, transparent 35%),
    repeating-linear-gradient(-8deg, rgba(244, 234, 209, 0.06) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, rgba(170, 43, 34, 0.2), rgba(20, 77, 54, 0.2)),
    rgba(7, 7, 6, 0.82);
}

.hero-kicker {
  display: inline-block;
  padding: 7px 9px;
  border: 1px dashed rgba(244, 234, 209, 0.42);
  background: rgba(0, 0, 0, 0.38);
  color: var(--yellow);
  transform: rotate(-1deg);
}

.hero-title {
  font-size: clamp(42px, 7vw, 78px);
  color: var(--paper);
  text-shadow:
    3px 3px 0 #000,
    5px 5px 0 rgba(170, 43, 34, 0.85),
    8px 8px 0 rgba(19, 128, 130, 0.55);
}

.hero-sub {
  max-width: 700px;
  color: #fff3c9;
}

.hero-body {
  max-width: 680px;
}

.poster-tag {
  width: max-content;
  max-width: 100%;
  margin: 0 0 12px auto;
  padding: 8px 10px;
  border-radius: 6px;
  border: 2px solid rgba(240, 191, 57, 0.65);
  background: rgba(170, 43, 34, 0.92);
  color: #fff3c9;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.crt {
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(244, 234, 209, 0.08) 0 1px, transparent 1px 4px),
    radial-gradient(closest-side at 50% 35%, rgba(19, 128, 130, 0.42), rgba(0, 0, 0, 0.92));
}

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

.prop {
  border-radius: 8px;
}

.tool-shell {
  background:
    linear-gradient(90deg, rgba(244, 234, 209, 0.08) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(20, 77, 54, 0.28)),
    #080807;
}

.tool-head {
  background:
    repeating-linear-gradient(45deg, rgba(244, 234, 209, 0.11) 0 8px, rgba(0, 0, 0, 0.06) 8px 16px),
    rgba(0, 0, 0, 0.34);
}

.tab,
.btn,
.input,
.textarea,
.select,
.drop,
.frame {
  border-radius: 8px;
}

.tab.is-active,
.btn-primary {
  color: #120f09;
  background: linear-gradient(135deg, var(--yellow), #f7df84 48%, var(--pink));
  border-color: rgba(244, 234, 209, 0.7);
}

.btn-secondary,
.nav-link-escape {
  background: rgba(19, 128, 130, 0.22);
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(240, 191, 57, 0.75);
  box-shadow: 0 0 0 3px rgba(240, 191, 57, 0.16), 0 0 0 2px rgba(0, 0, 0, 0.28) inset;
}

.flyer {
  background:
    repeating-linear-gradient(-6deg, rgba(0, 0, 0, 0.035) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, #f7edcf, #e8d499);
}

.cardx::after,
.warn-inner::after,
.hero-copy::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 12px;
  width: 62px;
  height: 16px;
  opacity: 0.45;
  background: repeating-linear-gradient(90deg, var(--paper) 0 8px, #111 8px 16px);
  transform: rotate(3deg);
}

.hero-copy::after {
  top: auto;
  right: 18px;
  bottom: 16px;
  width: 94px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .poster-tag {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .hero-actions,
  .row,
  .footer-grid {
    align-items: stretch;
  }
  .header-inner {
    flex-direction: column;
  }
  .nav,
  .hero-actions,
  .row,
  .footer-links {
    flex-direction: column;
    width: 100%;
  }
  .mark,
  .mark-ink,
  .nav-link,
  .tab,
  .btn,
  .link,
  .select {
    width: 100%;
    max-width: 100%;
  }
  .btn,
  .nav-link,
  .link {
    text-align: center;
  }
  .hero-copy,
  .hero-visual,
  .tool-shell,
  .cardx,
  .warn-inner {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      4px 4px 0 rgba(0, 0, 0, 0.55),
      0 18px 50px rgba(0, 0, 0, 0.45);
  }
  .tool-head {
    align-items: stretch;
  }
  .tabs {
    flex-direction: column;
  }
  .tab::after,
  .cardx::after,
  .warn-inner::after,
  .hero-copy::after {
    display: none;
  }
  .footer {
    padding-bottom: 0;
  }
  .disruptarian-tag {
    position: static;
    display: block;
    margin-top: 14px;
    text-align: center;
    border-radius: 8px;
    transform: none;
  }
  .props {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-title {
    font-size: clamp(34px, 15vw, 48px);
  }
  .hero-sub {
    font-size: 16px;
  }
  .crt-screen,
  .textarea,
  .input,
  .select {
    font-size: 14px;
  }
  .frame {
    height: 360px;
  }
}


/* Full network banner rotator */
.network-banner-rotator{position:relative;width:min(980px,calc(100% - 28px));height:138px;margin:36px auto 30px;border-radius:6px;overflow:hidden;background:#05070c;box-shadow:0 18px 46px rgba(0,0,0,.45)}
.network-banner-rotator__slide{position:absolute;inset:0;display:flex;align-items:center;padding:20px 28px;color:#fff;text-decoration:none;opacity:0;transition:opacity .8s ease;isolation:isolate}
.network-banner-rotator__slide.is-active{opacity:1;z-index:2}
.network-banner-rotator__bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:saturate(1.06) contrast(1.05);transform:scale(1.03);z-index:-2}
.network-banner-rotator__slide:after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.62) 48%,rgba(0,0,0,.22))}
.network-banner-rotator__copy{display:grid;gap:4px;max-width:min(650px,80%);text-shadow:0 2px 14px rgba(0,0,0,.82)}
.network-banner-rotator__copy strong{font-size:clamp(28px,4vw,42px);line-height:1;font-weight:900;letter-spacing:0}
.network-banner-rotator__copy span{font-size:clamp(14px,1.7vw,18px);line-height:1.35;color:rgba(255,255,255,.86)}
.network-banner-rotator--dreadtalk{border:1px solid rgba(248,198,62,.65);box-shadow:0 18px 46px rgba(0,0,0,.5),0 0 28px rgba(25,135,84,.18)}
.network-banner-rotator--dreadtalk .network-banner-rotator__slide:after{background:linear-gradient(90deg,rgba(18,25,9,.94),rgba(70,17,10,.66) 52%,rgba(5,16,10,.28))}
.network-banner-rotator--dreadtalk .network-banner-rotator__copy strong{color:#f8c63e}
.network-banner-rotator--dreadtalk .network-banner-rotator__copy span{color:#f4e6b4}
.network-banner-rotator--shizzolator{border:2px solid rgba(255,214,66,.78);box-shadow:6px 6px 0 rgba(0,0,0,.65),0 18px 46px rgba(0,0,0,.42)}
.network-banner-rotator--shizzolator .network-banner-rotator__slide:after{background:linear-gradient(90deg,rgba(29,13,8,.93),rgba(91,23,114,.62) 52%,rgba(0,0,0,.25))}
.network-banner-rotator--shizzolator .network-banner-rotator__copy strong{color:#ffd642;text-transform:uppercase}
.network-banner-rotator--shizzolator .network-banner-rotator__copy span{color:#fff2c7}
@media(max-width:620px){.network-banner-rotator{height:128px;margin-left:14px;margin-right:14px}.network-banner-rotator__slide{padding:18px}.network-banner-rotator__copy{max-width:94%}.network-banner-rotator__copy strong{font-size:27px}.network-banner-rotator__copy span{font-size:14px}}


/* Justin-style rotating promo banners */
.promo-rotator{clear:both;width:720px;max-width:calc(100% - 24px);height:120px;max-height:120px;margin:24px auto 18px;padding:0;box-sizing:border-box;position:relative;overflow:hidden;background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,0) 42%),linear-gradient(90deg,rgba(216,207,183,.08) 1px,transparent 1px),#40342d;border:1px solid #5d1d19;box-shadow:inset 0 0 0 1px rgba(255,255,255,.18),0 14px 32px rgba(31,14,12,.26)}
.promo-rotator--lower{margin-top:28px;margin-bottom:22px}
.promo-rotator__frame{position:relative;display:block;height:100%;max-height:100%;overflow:hidden;box-sizing:border-box;background:#211918;border:1px solid rgba(216,207,183,.24)}
.promo-rotator__slide{position:absolute;inset:0;display:block;color:#fff;text-decoration:none;opacity:0;visibility:hidden;transition:opacity 700ms ease,visibility 700ms ease,transform 700ms ease;transform:scale(1.018)}
.promo-rotator__slide.is-active{opacity:1;visibility:visible;transform:scale(1)}
.promo-rotator__slide:focus-visible{outline:2px solid #d8cfb7;outline-offset:-4px}
.promo-rotator__slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.promo-rotator__slide:before{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(25,13,11,.9),rgba(25,13,11,.42) 56%,rgba(25,13,11,.16)),linear-gradient(0deg,rgba(0,0,0,.22),rgba(255,255,255,0));pointer-events:none}
.promo-rotator__copy{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;gap:4px;width:min(430px,66%);min-height:100%;padding:14px 22px;box-sizing:border-box;text-shadow:1px 1px 0 #260000,0 2px 16px rgba(0,0,0,.38)}
.promo-rotator__label{font-size:12px;line-height:1.2;color:#d8cfb7;text-transform:uppercase;letter-spacing:0}
.promo-rotator__title{font-size:21px;line-height:1.08;color:#fff;font-weight:bold;letter-spacing:0}
.promo-rotator__text{font-size:13px;line-height:1.32;color:#f0eadc;letter-spacing:0}
.promo-rotator__dots{position:absolute;right:10px;bottom:8px;z-index:4;display:flex;justify-content:center;gap:6px;margin:0}
.promo-rotator__dot{width:8px;height:8px;border:1px solid #d8cfb7;background:#3b322c;transition:background-color 180ms ease,transform 180ms ease}
.promo-rotator__dot.is-active{background:#8e0000;transform:scale(1.18)}
.promo-rotator--dreadtalk{border-color:#f8c63e;background:linear-gradient(135deg,rgba(248,198,62,.18),rgba(255,255,255,0) 42%),#1d2514}
.promo-rotator--shizzolator{border-color:#ffd642;background:linear-gradient(135deg,rgba(255,214,66,.2),rgba(255,255,255,0) 42%),#2b1725}
@media(max-width:760px){.promo-rotator{width:auto;max-width:calc(100% - 16px);height:110px;max-height:110px;margin-left:8px;margin-right:8px}.promo-rotator__copy{width:78%;padding:9px 11px}.promo-rotator__title{font-size:16px;line-height:1.08}.promo-rotator__label{font-size:10px;line-height:1.2}.promo-rotator__text{font-size:11px;line-height:1.25}}
@media(prefers-reduced-motion:reduce){.promo-rotator__slide{transition:none;transform:none}}


/* Keep promo banners at the Justin Thompson 720x120 frame size. */
.promo-rotator{
  width:min(720px,calc(100vw - 24px));
  max-width:none;
  height:120px;
  max-height:120px;
  margin-left:50%;
  margin-right:0;
  transform:translateX(-50%);
}
@media(max-width:760px){
  .promo-rotator{
    width:calc(100vw - 16px);
    max-width:none;
    height:110px;
    max-height:110px;
    margin-left:50%;
    margin-right:0;
    transform:translateX(-50%);
  }
}


/* Center the Justin-size promo frame against the viewport, not a narrow content column. */
.promo-rotator{
  left:50vw;
  margin-left:0;
  margin-right:0;
  transform:translateX(-50%);
}
@media(max-width:760px){
  .promo-rotator{
    left:50vw;
    margin-left:0;
    margin-right:0;
    transform:translateX(-50%);
  }
}
