/* /slop/ — raw imageboard styling (Yotsuba-flavored) */

:root {
  --bg: #ffffee;
  --bg-reply: #f0e0d6;
  --bg-reply-hl: #f8dcc5;
  --border: #d9bfb7;
  --border-dark: #b0938a;
  --text: #000;
  --subject: #cc1105;
  --name: #117743;
  --tripcode: #228854;
  --link: #34345c;
  --link-hover: #cc1105;
  --green: #789922;
  --quote: #789922;
  --board-bar: #cca59a;
  --warn: #af0a0f;
  --slop: #cc1105;
  --based: #117743;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13.33px; /* 10pt — actual 4chan default */
  line-height: 1.3;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
}
a {
  color: var(--link);
  text-decoration: underline;
}
a:hover { color: var(--link-hover); }

img { max-width: 100%; height: auto; display: block; }

/* ========== TOP NAV BAR ========== */
.tl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  background: #ea8;
  border-bottom: 1px solid #800;
  font-size: 11px;
}
.tl-nav__brand {
  font-family: arial, helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2a0e00 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.tl-nav__brand:hover { color: #800 !important; }
.tl-nav__brand-slash { color: #800; }
.tl-nav__brand-mark {
  background: #800;
  color: #fff !important;
  padding: 2px 6px;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: lowercase;
}
.tl-nav__brand-name {
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  color: #2a0e00;
  margin-left: 4px;
}
@media (max-width: 480px) {
  .tl-nav__brand-name { display: none; }
}

.tl-nav__back {
  color: #800 !important;
  text-decoration: underline;
  font-weight: 700;
}

/* Board breadcrumb */
.tl-board {
  padding: 4px 8px 2px;
  font-size: 11px;
  border-bottom: 1px solid var(--border-dark);
  background: var(--bg);
}
.tl-board__bracket { color: #800; }
.tl-board__link {
  color: #800 !important;
  text-decoration: underline;
  font-weight: 700;
}
.tl-board__link--current {
  color: #000 !important;
  text-decoration: none;
}
.tl-board__sep { color: #800; padding: 0 2px; }
.tl-board__meta { color: #555; margin-left: 6px; }

/* ========== MAIN ========== */
.tl-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 6px 32px;
}

/* ========== HERO ========== */
.tl-hero {
  text-align: center;
  padding: 12px 8px 16px;
  border-bottom: 2px solid var(--border-dark);
  margin-bottom: 10px;
}

.tl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--warn);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slop);
  animation: tl-blip 1.2s ease-in-out infinite;
}

.tl-hero__title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 5.5vw, 36px);
  margin: 4px 0 6px;
  color: var(--subject);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-style: italic;
}
.tl-hero__title-tier {
  color: var(--warn);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--green);
}

.tl-hero__sub {
  font-size: 13px;
  margin: 0 0 12px;
  color: #333;
  font-family: monospace;
}
.tl-hero__sub br + .tl-hero__accent,
.tl-hero__accent {
  color: var(--warn);
  font-weight: 700;
}

/* Countdown — chunky monospace digits */
.tl-countdown {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid var(--border-dark);
  margin: 6px 0;
  font-family: "JetBrains Mono", "Courier New", monospace;
}
.tl-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6px;
  min-width: 36px;
}
.tl-cd-cell strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--warn);
  line-height: 1;
}
.tl-cd-cell span {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.tl-cd-sep {
  font-size: 18px;
  color: #999;
  padding: 0 1px;
  align-self: center;
}

/* ========== REPLY BOX (form at top) — looks like the 4chan reply form ========== */
.tl-cta--top {
  margin: 0 0 14px;
  padding: 8px 10px 10px;
  background: var(--bg-reply);
  border: 1px solid var(--border-dark);
}

.tl-cta__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}
.tl-cta__tag {
  background: #800;
  color: #fff;
  padding: 2px 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 10px;
  border-radius: 2px;
}
.tl-cta__meta { color: #555; }
.tl-cta__meta strong {
  color: var(--based);
  font-weight: 700;
}
.tl-cta__meta strong.is-bumping {
  animation: tl-bump 0.4s ease-out;
}

/* ====== Value-prop pitch (what you actually unlock) ====== */
.tl-cta__pitch {
  background: #fffaf0;
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--warn);
  padding: 8px 12px 10px;
  margin: 0 0 10px;
  font-family: arial, helvetica, sans-serif;
}
.tl-cta__pitch-line {
  margin: 0 0 6px;
  font-size: 14px;
  color: #2a0e00;
  font-family: monospace;
}
.tl-cta__pitch-line strong { color: var(--warn); }
.tl-cta__unlocks {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #333;
}
.tl-cta__unlocks li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 1px 0;
}
.tl-cta__unlocks li strong {
  color: #2a0e00;
  font-weight: 700;
}
.tl-cta__chk {
  color: var(--based);
  font-family: monospace;
  font-weight: 700;
  flex-shrink: 0;
  width: 22px;
}
.tl-cta__pitch-fine {
  margin: 8px 0 0;
  font-size: 11px;
  color: #777;
  font-family: monospace;
  font-style: italic;
}

@media (max-width: 520px) {
  .tl-cta__pitch-line { font-size: 13px; }
  .tl-cta__unlocks { font-size: 12px; }
}

.tl-form__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 520px) {
  .tl-form__row { flex-direction: row; }
}

.tl-form__input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: 0;
  padding: 6px 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
}
.tl-form__input:focus {
  outline: 1px solid var(--warn);
  outline-offset: -1px;
}
.tl-form__input:disabled {
  background: #efe7e0;
  color: #888;
}

.tl-form__btn {
  background: linear-gradient(180deg, #f6c192, #d99868);
  color: #2a0e00;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border: 1px solid #8b5a2b;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}
.tl-form__btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #fad0a8, #e3a575);
}
.tl-form__btn:active:not(:disabled) {
  background: linear-gradient(180deg, #d99868, #f6c192);
}
.tl-form__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.tl-form__hint {
  font-size: 11px;
  color: #555;
  margin: 6px 0 0;
  font-family: monospace;
  line-height: 1.4;
}
.tl-form__hint strong { color: var(--warn); }

.tl-form__msg {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
}
.tl-form__msg--ok { color: var(--based); }
.tl-form__msg--err { color: var(--warn); }

/* Live join feed inside reply box */
.tl-joinfeed {
  margin-top: 8px;
  padding: 4px 8px;
  background: #fff;
  border: 1px dashed var(--border-dark);
  font-size: 11px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
}
.tl-joinfeed__dot {
  width: 7px;
  height: 7px;
  background: var(--based);
  border-radius: 50%;
  flex-shrink: 0;
  animation: tl-blip 1.2s ease-in-out infinite;
}
.tl-joinfeed.is-swap { animation: tl-joinslide 350ms ease-out; }

/* Share — appears after submit */
.tl-share {
  margin-top: 8px;
  padding: 6px 8px;
  background: #fff5d4;
  border: 1px solid #c4a045;
  font-size: 12px;
}
.tl-share__title { margin: 0 0 4px; font-weight: 700; color: #6b4500; }
.tl-share__row { display: flex; gap: 6px; flex-wrap: wrap; }
.tl-share__btn {
  background: linear-gradient(180deg, #fff, #ddd);
  border: 1px solid #888;
  padding: 3px 10px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
  color: #000;
}
.tl-share__btn:hover { background: linear-gradient(180deg, #fff, #f0c898); }

/* ========== THREAD HEADER ========== */
.tl-thread-head {
  font-size: 11px;
  margin: 18px 0 6px;
  padding: 0 4px;
  color: #555;
}
.tl-thread-tag {
  display: inline-block;
  padding: 1px 5px;
  font-weight: 700;
  font-size: 10px;
  margin-right: 4px;
  border-radius: 2px;
}
.tl-thread-tag--sticky { background: #f0c00c; color: #4a3200; border: 1px solid #b0860a; }
.tl-thread-tag--locked { background: #ddd; color: #333; border: 1px solid #888; }
.tl-thread-tag--meta   { background: #800; color: #fff; }
.tl-thread-meta { color: #444; }
.tl-id {
  font-family: monospace;
  background: #c2b5a8;
  color: #000;
  padding: 0 4px;
  font-size: 11px;
  border-radius: 1px;
}

/* ========== POSTS ========== */
.tl-preview {
  position: relative;
  margin-bottom: 16px;
}

.tl-post {
  position: relative;
  background: var(--bg-reply);
  border: 1px solid var(--border-dark);
  padding: 6px 8px 8px;
  margin: 0 0 6px;
  font-size: 13px;
}
.tl-post--op {
  background: var(--bg);
  border-color: var(--border-dark);
  border-left: 3px solid var(--subject);
}

.tl-post__head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  font-size: 11px;
  margin-bottom: 4px;
  line-height: 1.4;
  font-family: Arial, sans-serif;
}
.tl-post__name {
  color: var(--name);
  font-weight: 700;
}
.tl-post__id { color: #555; }
.tl-post__time { color: #555; font-family: monospace; }
.tl-post__no { color: #555; }
.tl-post__no a {
  color: #555;
  text-decoration: none;
}
.tl-post__no a:hover { color: var(--warn); text-decoration: underline; }
.tl-post__reply {
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
}
.tl-post__file {
  display: block;
  width: 100%;
  font-size: 11px;
  color: #707070;
  font-family: arial, helvetica, sans-serif;
  margin: 1px 0 3px;
  line-height: 1.3;
}
.tl-post__file-link {
  color: var(--link);
  text-decoration: underline;
  font-weight: 700;
}
.tl-post__file-link:hover { color: var(--warn); }
.tl-post__file-meta { color: #707070; margin-left: 4px; }
.tl-post__file-warn {
  color: var(--warn);
  font-weight: 700;
  margin-left: 6px;
  text-transform: uppercase;
}

.tl-post__body { padding: 2px 0; }
.tl-post__body--has-img {
  display: block;
}
.tl-post__body--has-img::after {
  content: "";
  display: block;
  clear: both;
}
.tl-post__thumb {
  float: left;
  margin: 3px 14px 6px 0;
  display: block;
  line-height: 0;
  border: 0;
  text-decoration: none;
}
.tl-post__thumb img {
  display: block;
  max-width: 125px;
  height: auto;
  border: 0;
  /* classic chan thumbs have no border; slight outline on hover */
  transition: filter 120ms ease;
}
.tl-post__thumb:hover img { filter: brightness(1.06); }
.tl-post__thumb--spoiler img {
  filter: brightness(0.35) saturate(0.4) blur(6px);
}
.tl-post__thumb--spoiler::after {
  content: "SPOILER";
  position: relative;
  display: block;
  margin-top: -22px;
  text-align: center;
  font-family: arial, helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #000;
  letter-spacing: 1px;
  padding: 2px 0;
}
.tl-post__thumb--spoiler:hover img {
  filter: none;
}
.tl-post__thumb--spoiler:hover::after { display: none; }
.tl-post__content { display: block; }

@media (max-width: 600px) {
  .tl-post__thumb img { max-width: 90px; }
  .tl-post__thumb { margin: 2px 10px 4px 0; }
}

/* greentext block under each tier */
.tl-post__quote {
  margin: 8px 0 0;
  padding: 0;
  font-family: monospace;
  font-size: 12px;
  color: var(--green);
  line-height: 1.4;
  white-space: pre-line;
}

/* ========== TIER LABELS / ITEMS ========== */
.tl-tier__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  margin: 4px 0 6px;
  color: var(--subject);
  flex-wrap: wrap;
}
.tl-tier__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid #000;
}
.tl-tier__letter--s { background: #6fcf72; color: #000; }
.tl-tier__letter--a { background: #b5e88a; color: #000; }
.tl-tier__letter--b { background: #f1d65a; color: #000; }
.tl-tier__letter--c { background: #f4a55c; color: #000; }
.tl-tier__letter--d { background: #ed7a7a; color: #000; }
.tl-tier__letter--f { background: #cc1105; color: #fff; }

.tl-tier--s .tl-tier__label > span:nth-child(2) { color: #1a6b2e; }
.tl-tier--a .tl-tier__label > span:nth-child(2) { color: #2a7a3f; }
.tl-tier--b .tl-tier__label > span:nth-child(2) { color: #7a5a00; }
.tl-tier--c .tl-tier__label > span:nth-child(2) { color: #8a3a00; }
.tl-tier--d .tl-tier__label > span:nth-child(2) { color: #7a1a1a; }
.tl-tier--f .tl-tier__label > span:nth-child(2) { color: #800; }

.tl-tier__pill {
  display: inline-block;
  font-size: 10px;
  padding: 1px 5px;
  font-weight: 700;
  margin-left: auto;
  border-radius: 0;
  border: 1px solid #000;
}
.tl-tier__pill--based { background: #d4f4c4; color: #1a6b2e; border-color: #1a6b2e; }
.tl-tier__pill--slop  { background: #ffc4c4; color: #800; border-color: #800; animation: tl-blip 1.6s ease-in-out infinite; }
.tl-tier__pill--reward {
  background: #fff5d4;
  color: #8b6500;
  border-color: #8b6500;
  animation: tl-pulse 1.8s ease-in-out infinite;
}

/* "showing 3 of 14" count under each tier label */
.tl-tier__meta {
  font-family: monospace;
  font-size: 11.5px;
  color: #6a4a00;
  margin: 4px 0 0;
  padding: 3px 8px;
  background: #fff5d4;
  border: 1px solid #d4b266;
  border-bottom: none;
  letter-spacing: 0.02em;
}
.tl-tier__meta strong {
  color: var(--warn);
  font-weight: 700;
}

.tl-tier__items {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  background: #fffbf0;
  border: 1px solid var(--border);
}
.tl-tier__meta + .tl-tier__items { margin-top: 0; }

/* "+ N more — locked" row at bottom of each tier */
.tl-tier__items li.tl-item--more {
  background: repeating-linear-gradient(
    45deg,
    #f4e8c8,
    #f4e8c8 6px,
    #ece0c0 6px,
    #ece0c0 12px
  ) !important;
  border-top: 1px dashed #b39248;
  font-style: italic;
  cursor: pointer;
  transition: background 120ms ease;
}
.tl-tier__items li.tl-item--more:hover {
  background: repeating-linear-gradient(
    45deg,
    #fff0c8,
    #fff0c8 6px,
    #f4e0a0 6px,
    #f4e0a0 12px
  ) !important;
}
.tl-tier__items li.tl-item--more .tl-item__rank {
  color: var(--warn);
  font-weight: 700;
}
.tl-item__name--more {
  color: #6a4a00 !important;
  font-weight: 700;
}
.tl-item__score--locked {
  color: #6a4a00 !important;
  letter-spacing: 1px;
}

.tl-tier__items li.tl-item--more.is-revealed {
  background: #d4f4c4 !important;
  border-top: 1px solid var(--based);
  cursor: default;
  font-style: normal;
}
.tl-tier__items li.tl-item--more.is-revealed .tl-item__rank,
.tl-tier__items li.tl-item--more.is-revealed .tl-item__name--more,
.tl-tier__items li.tl-item--more.is-revealed .tl-item__score--locked {
  color: var(--based) !important;
}

/* === Ghost rows: real-shaped item rows with redacted name bars === */
.tl-tier__items li.tl-item--ghost {
  cursor: pointer;
  position: relative;
  grid-template-columns: 36px 1fr auto;
}
.tl-tier__items li.tl-item--ghost > .tl-redact {
  justify-self: start;
}
.tl-tier__items li.tl-item--ghost:nth-child(even) { background: #f7f0e0; }
.tl-tier__items li.tl-item--ghost .tl-item__rank {
  color: #aa8060;
  opacity: 0.7;
}
.tl-tier__items li.tl-item--ghost .tl-item__score--locked {
  color: #aa8060 !important;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.7;
}
.tl-tier__items li.tl-item--ghost:hover {
  background: #fff5d4 !important;
}
.tl-tier__items li.tl-item--ghost:hover .tl-redact {
  background: linear-gradient(90deg, #d4a040 0%, #b88018 50%, #d4a040 100%);
}

/* Redacted name bar — looks like a censored line in a document */
.tl-redact {
  display: inline-block;
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      #555 0,
      #555 6px,
      #333 6px,
      #333 12px
    );
  border-radius: 1px;
  vertical-align: middle;
  transition: background 150ms ease;
  position: relative;
  overflow: hidden;
}
.tl-redact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  animation: tl-redact-shimmer 2.4s ease-in-out infinite;
}
@keyframes tl-redact-shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* When the list unlocks, ghost rows reveal their real content */
.tl-tier__items li.tl-item--ghost.is-revealed {
  background: #eafce0 !important;
  cursor: default;
  animation: tl-ghost-pop 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes tl-ghost-pop {
  0%   { background: #fff5d4; transform: translateX(-4px); opacity: 0.4; }
  60%  { background: #d4f4c4; transform: translateX(2px); opacity: 1; }
  100% { background: #eafce0; transform: translateX(0); opacity: 1; }
}
.tl-redact--revealed {
  height: auto !important;
  background: transparent !important;
  color: #000 !important;
  font-family: arial, helvetica, sans-serif !important;
  font-size: 12.5px;
  text-align: left;
  padding: 0 !important;
  border-radius: 0;
}
.tl-redact--revealed::after { display: none !important; }

/* Big visible payoff banner shown after submit */
.tl-reveal-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #d4f4c4 0%, #b8e8a4 100%);
  border: 2px solid var(--based);
  border-left-width: 4px;
  font-family: arial, helvetica, sans-serif;
  color: #0a4818;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.tl-reveal-banner.is-on {
  opacity: 1;
  transform: translateY(0);
}
.tl-reveal-banner__icon {
  font-family: monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--based);
  width: 22px;
  height: 22px;
  border: 2px solid var(--based);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.tl-reveal-banner__text { font-size: 13px; line-height: 1.4; }
.tl-reveal-banner__text strong {
  color: #0a4818;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.tl-reveal-banner [data-reveal-count] {
  font-family: monospace;
  background: #0a4818;
  color: #fff;
  padding: 1px 6px;
  border-radius: 2px;
  margin: 0 2px;
}

/* Subtle nudge on the form when a user clicks a "+more" row */
@keyframes tl-cta-nudge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
  30% { box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.45); }
  60% { box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.25); }
}
.tl-cta--nudge { animation: tl-cta-nudge 0.9s ease-out; }
.tl-tier__items li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  font-size: 12.5px;
  border-bottom: 1px dotted var(--border);
}
.tl-tier__items li:nth-child(even) { background: #f7f0e0; }
.tl-tier__items li:last-child { border-bottom: none; }
.tl-item__rank {
  font-family: monospace;
  font-size: 11px;
  color: #888;
  font-weight: 700;
}
.tl-item__name { color: #000; }
.tl-item__score {
  font-family: monospace;
  font-weight: 700;
  color: var(--warn);
  font-size: 12px;
}
.tl-item__score--based { color: var(--based); }
.tl-item__score--slop { color: var(--slop); }

/* ========== BLUR / PEEK / LOCK ========== */
.tl-tier--peek { position: relative; z-index: 2; }

.tl-tier--fuzzy {
  filter: blur(2.5px);
  opacity: 0.85;
  user-select: none;
  cursor: pointer;
  transition: filter 200ms, opacity 200ms;
}
.tl-tier--fuzzy:hover,
.tl-tier--fuzzy.is-peeked {
  filter: blur(0);
  opacity: 1;
}

.tl-tier--locked {
  position: relative;
  filter: blur(6px);
  opacity: 0.6;
  user-select: none;
  transition: filter 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}
.tl-tier--locked.is-revealed {
  filter: blur(0);
  opacity: 1;
  animation: tl-reveal 700ms ease-out;
}
.tl-tier--locked.is-revealed::after {
  content: "UNLOCKED (You)";
  position: absolute;
  top: 6px;
  right: 8px;
  background: #ff0080;
  color: #fff;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid #000;
  animation: tl-pop 500ms ease-out 200ms backwards;
}

.tl-blur-zone {
  position: relative;
  filter: blur(7px);
  opacity: 0.55;
  user-select: none;
  transform: scale(1.005);
  transition: filter 200ms, opacity 200ms;
}
.tl-blur-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 238, 0.7) 60%, rgba(255, 255, 238, 0.95) 100%);
  pointer-events: none;
}

.tl-blur-zone .tl-tier__items li.is-peeked {
  filter: blur(0) !important;
  background: #fff5b8;
  transition: filter 250ms, background 250ms;
}

.tl-spotlight {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 200ms;
  background: radial-gradient(circle, rgba(255, 245, 184, 0.5) 0%, transparent 70%);
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}
.tl-spotlight.is-active { opacity: 1; }

.tl-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  filter: none;
  opacity: 1;
  pointer-events: none;
  text-align: center;
  padding: 16px;
}
.tl-lock-overlay__icon { font-size: 2rem; }
.tl-lock-overlay__count {
  font-size: 12px;
  color: #555;
  margin: 6px 0 2px;
  font-family: monospace;
}
.tl-lock-overlay__count strong {
  color: var(--warn);
  font-size: 16px;
  font-weight: 700;
}
.tl-lock-overlay__text {
  font-family: monospace;
  font-size: 12px;
  color: var(--green);
  margin: 0;
  font-weight: 700;
}

.tl-hint {
  text-align: center;
  font-size: 11px;
  color: #666;
  padding: 6px 8px;
  margin: 6px 0 0;
  background: #fff;
  border: 1px dashed var(--border-dark);
  font-family: monospace;
}
.tl-hint__desk { display: inline; }
.tl-hint__mob { display: none; }
@media (hover: none) {
  .tl-hint__desk { display: none; }
  .tl-hint__mob { display: inline; }
}

/* ========== ROADMAP / TEASE ========== */
.tl-tease-section {
  margin-top: 20px;
  padding: 6px 8px 10px;
  background: var(--bg-reply);
  border: 1px solid var(--border-dark);
}
.tl-tease-head {
  font-size: 11px;
  margin-bottom: 6px;
  color: #555;
}
.tl-tease {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: monospace;
  font-size: 12.5px;
  color: var(--green);
  line-height: 1.6;
}
.tl-tease li strong {
  color: #000;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

/* ========== FOOTER ========== */
.tl-footer {
  text-align: center;
  padding: 24px 12px 32px;
  font-size: 11px;
  color: #555;
  border-top: 1px solid var(--border-dark);
  margin-top: 24px;
  background: var(--bg);
}
.tl-footer p { margin: 4px 0; }
.tl-footer__chan { color: #999; font-family: monospace; }
.tl-footer code {
  background: #fff;
  border: 1px solid var(--border-dark);
  padding: 0 4px;
  color: #800;
}

/* ========== ANIMATIONS (minimal — chan vibe) ========== */
@keyframes tl-blip {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes tl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes tl-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); color: #ff0080; }
  100% { transform: scale(1); }
}
@keyframes tl-joinslide {
  from { opacity: 0; transform: translateX(-4px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes tl-reveal {
  0% { transform: scale(0.99); filter: blur(6px); opacity: 0.6; background: #fff5b8; }
  50% { filter: blur(0); opacity: 1; background: #fff5b8; }
  100% { transform: scale(1); filter: blur(0); opacity: 1; background: var(--bg-reply); }
}
@keyframes tl-pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
