:root {
  color-scheme: light;
  --ink: #15110f;
  --paper: #fff8e8;
  --hot: #e8172f;
  --deep: #111827;
  --gold: #f8c529;
  --blue: #0563c1;
  --line: #1f1a17;
  --muted: #6f6259;
  --ad: #dcf402;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.ticker-strip {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 34px;
  padding: 8px 0;
  color: white;
  background: var(--hot);
  border-bottom: 3px solid var(--line);
  overflow: hidden;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ticker {
  display: block;
  width: max-content;
  white-space: nowrap;
  animation: crawl 24s linear infinite;
}

@keyframes crawl {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.site-header {
  border-bottom: 6px solid var(--line);
  background: white;
}

.masthead {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 12px;
}

.brand-row {
  padding-bottom: 10px;
  text-align: center;
}

.brand {
  margin: 0;
  color: var(--hot);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-strip {
  display: flex;
  gap: 0;
  margin-top: 10px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 max(8px, calc((100vw - 1120px) / 2 + 16px));
  background: var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-strip span {
  flex: 0 0 auto;
  padding: 11px 14px;
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 80px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.article-shell {
  background: white;
  border: 4px solid var(--line);
  box-shadow: 8px 8px 0 rgba(21, 17, 15, 0.2);
}

.kicker {
  display: inline-block;
  margin: 16px 16px 0;
  padding: 7px 10px;
  color: white;
  background: var(--hot);
  border: 3px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
}

article {
  padding: 0 16px 26px;
}

h1 {
  max-width: 13ch;
  margin: 10px 0 8px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.75rem, 8.8vw, 6.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0;
}

.deck {
  margin: 0 0 14px;
  padding: 10px 0 12px;
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.08;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.share-row button,
.share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 10px;
  color: var(--ink);
  border: 3px solid var(--line);
  background: var(--gold);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--line);
}

.hero {
  margin: 0 0 14px;
  border: 4px solid var(--line);
  background: #ddd;
}

.hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.caption {
  padding: 8px 10px;
  color: white;
  background: var(--line);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-body {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.22rem;
  line-height: 1.45;
}

.article-body p {
  margin: 0 0 1.05em;
}

.article-body a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.article-inline-image {
  margin: 1.25em 0;
  border: 3px solid var(--line);
  background: #ddd;
  overflow: hidden;
}

.article-inline-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.spoiler-frame {
  position: relative;
  overflow: hidden;
}

.article-inline-image.is-spoiler img {
  filter: blur(18px);
  transform: scale(1.03);
}

.article-inline-image.is-spoiler.spoiler-revealed img {
  filter: none;
  transform: none;
}

.spoiler-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: white;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.article-inline-image.spoiler-revealed .spoiler-cover {
  display: none;
}

.article-inline-image figcaption {
  padding: 8px 10px;
  color: white;
  background: var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.article-inline-ad {
  margin: 1.35em 0;
  padding: 14px;
  border: 1px solid #ff4fb8;
  background: #eeb1d6;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.article-inline-ad-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  color: #ffb6e4;
  background: #111;
  border: 1px solid #e1c6d6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-inline-ad img {
  display: block;
  width: 100%;
  max-height: 340px;
  margin: 0 auto 10px;
  object-fit: contain;
  background: #000;
  border: 1px solid #000;
}

.article-inline-ad strong {
  display: block;
  color: #ff4fb8;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.article-inline-ad p {
  margin: 8px auto 0;
  max-width: 42ch;
  font-size: 0.92rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
}

.article-subhead {
  margin: 1.1em 0 0.45em;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.22;
}

.dropcap:first-letter {
  float: left;
  margin: 0.05em 0.08em 0 0;
  color: var(--hot);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 4.5rem;
  line-height: 0.8;
  text-shadow: 2px 2px 0 var(--line);
}

.article-banner-ad {
  display: grid;
  grid-template-columns: minmax(92px, 140px) minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  margin: 22px 0 8px;
  min-height: 118px;
  padding: 12px 14px;
  border: 3px solid var(--line);
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  text-transform: uppercase;
}

.article-banner-ad img {
  grid-row: 1 / span 3;
  width: 100%;
  height: 94px;
  object-fit: cover;
  border: 2px solid #000;
}

.article-banner-ad span {
  color: #ffb6e4;
  font-size: 0.68rem;
  font-weight: 900;
}

.article-banner-ad strong,
.article-banner-ad p {
  animation: pinkPulse 1s steps(1, end) infinite;
}

.article-banner-ad strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.55rem;
  line-height: 0.95;
}

.article-banner-ad p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
}

@keyframes pinkPulse {
  0%, 49.999% { color: #ff4fb8; }
  50% { color: #d000ff; }
}

.comments-section {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 4px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
}

.comments-section h2 {
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.comments-list {
  display: grid;
  gap: 12px;
}

.comment {
  padding: 14px;
  border: 2px solid var(--line);
  background: #f7f7f7;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.comment-meta span {
  color: var(--muted);
  font-weight: 800;
}

.comment p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.42;
}

.comment-replies {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 16px;
  border-left: 4px solid var(--hot);
}

.comment-locked {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 14px;
}

.comment-locked textarea {
  min-height: 72px;
  min-width: 0;
  padding: 10px;
  resize: vertical;
  border: 3px solid var(--line);
  background: #eee;
  font-weight: 900;
  text-transform: uppercase;
}

.comment-locked button {
  align-self: stretch;
  padding: 8px 14px;
  color: white;
  border: 3px solid var(--line);
  background: #777;
  font-weight: 900;
  text-transform: uppercase;
}

.redacted {
  position: relative;
  max-height: 180px;
  overflow: hidden;
  filter: blur(2px);
  user-select: none;
}

.redacted::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, white 70%);
}

.locked {
  filter: none;
  user-select: auto;
  max-height: none;
}

.locked::after {
  display: none;
}

.subscribe-wall {
  position: relative;
  z-index: 2;
  margin: -42px auto 24px;
  max-width: 680px;
  padding: 16px;
  border: 4px solid var(--line);
  background: #fff;
  box-shadow: 8px 8px 0 var(--hot);
  text-align: center;
}

.subscribe-wall.hidden {
  display: none;
}

.subscribe-wall strong {
  display: block;
  margin-bottom: 6px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.subscribe-wall p {
  margin: 0 auto 12px;
  max-width: 46ch;
  font-weight: 800;
}

.subscribe-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}

.subscribe-actions input {
  min-height: 44px;
  min-width: 0;
  padding: 8px 10px;
  border: 3px solid var(--line);
  background: #fffbe0;
  font-weight: 800;
}

.subscribe-actions button,
.chaos-button {
  min-height: 44px;
  padding: 8px 14px;
  color: white;
  border: 3px solid var(--line);
  background: var(--hot);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--line);
}

.poll-buttons {
  display: grid;
  gap: 8px;
}

.aside {
  display: grid;
  gap: 14px;
}

.box {
  border: 4px solid var(--line);
  background: white;
  box-shadow: 6px 6px 0 rgba(21, 17, 15, 0.18);
}

.box h2 {
  margin: 0;
  padding: 8px 10px;
  color: white;
  background: var(--deep);
  border-bottom: 3px solid var(--line);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.box-content {
  padding: 12px;
  font-weight: 800;
}

.box-content ol {
  margin: 0;
  padding-left: 20px;
}

.box-content li {
  margin-bottom: 10px;
}

.ad-slot {
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: repeating-linear-gradient(-12deg, var(--ad), var(--ad) 12px, #ff7bd5 12px, #ff7bd5 24px);
  border: 4px dashed var(--line);
  text-align: center;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.8rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.ad-slot small {
  display: block;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: none;
}

.float-ad {
  position: fixed;
  z-index: 30;
  width: min(230px, calc(100vw - 28px));
  border: 4px solid var(--line);
  background: var(--ad);
  box-shadow: 7px 7px 0 rgba(21, 17, 15, 0.35);
  animation: jiggle 3.8s ease-in-out infinite;
}

.float-ad.right {
  right: 12px;
  top: 45vh;
  min-height: 330px;
  color: #fff;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 0, 0.22), rgba(255, 255, 0, 0.22) 8px, transparent 8px, transparent 16px),
    linear-gradient(160deg, #001a66 0%, #0047ff 38%, #7a00ff 70%, #ff00bf 100%);
  border-color: #f7ff00;
  box-shadow: 0 0 0 4px #ff00bf, 9px 9px 0 rgba(247, 255, 0, 0.85);
  animation-delay: 1s;
}

.float-ad.right .float-ad-header {
  color: #001a66;
  background: #f7ff00;
  border-bottom: 4px solid #ff00bf;
}

@keyframes jiggle {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-7px); }
}

.float-ad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  color: white;
  background: var(--line);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.float-ad-header button {
  width: 26px;
  height: 26px;
  padding: 0;
  color: var(--line);
  border: 2px solid white;
  background: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.float-ad-body {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: 16px 12px;
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.float-ad-body strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  color: #f7ff00;
  font-size: 2.25rem;
  line-height: 0.95;
  text-shadow: 3px 3px 0 #ff00bf, -2px -2px 0 #001a66;
}

.float-ad-body p {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.02;
  text-shadow: 2px 2px 0 #001a66;
}

#rightAdCountdown {
  display: block;
  margin-top: 10px;
  color: #f7ff00;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  text-shadow: 3px 3px 0 #ff00bf, -2px -2px 0 #001a66;
  animation: countdownFlash 1s steps(1, end) infinite;
}

@keyframes countdownFlash {
  0%, 49.999% {
    color: #f7ff00;
    background: transparent;
  }
  50%, 100% {
    color: #ff00bf;
    background: #f7ff00;
  }
}

.ad-hidden {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 40;
  width: min(420px, calc(100vw - 28px));
  padding: 12px 14px;
  border: 3px solid var(--line);
  background: white;
  box-shadow: 5px 5px 0 var(--line);
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, 140%);
  transition: transform 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

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

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

  .float-ad.right {
    top: auto;
    right: 8px;
    bottom: 160px;
  }
}

@media (max-width: 640px) {
  main {
    padding-inline: 10px;
  }

  article {
    padding-inline: 12px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 18vw, 4.8rem);
  }

  .subscribe-actions {
    grid-template-columns: 1fr;
  }

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

  .float-ad {
    width: min(190px, calc(100vw - 20px));
  }

}
