/* tatbabes — explicit tattoo-editorial aesthetic (dark / cream / cinnabar red) */

@import url("https://fonts.googleapis.com/css2?family=Pirata+One&family=Oswald:wght@300;400;500;600;700&family=Special+Elite&display=swap");

:root {
  --ink-0: #0a0809;
  --ink-1: #070607;
  --ink-2: #121013;
  --panel: rgba(18, 16, 19, 0.8);
  --paper: #e9e3d6;
  --paper-2: rgba(233, 227, 214, 0.8);
  --paper-dim: rgba(233, 227, 214, 0.6);
  --paper-faint: rgba(233, 227, 214, 0.4);
  --line: rgba(233, 227, 214, 0.12);
  --line-2: rgba(233, 227, 214, 0.28);
  --red: #cf1726;
  --red-bright: #ec2030;
  --red-deep: #a0111e;
  --wash-accent: var(--red);
  --maxw: 1500px;

  --epic-ovl-opacity: 0.45;
  --epic-ovl-blend: overlay;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: var(--ink-0);
}

body.tb-body {
  margin: 0;
  font-family: "Oswald", system-ui, sans-serif;
  background: var(--ink-0);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;

  /* Aliases consumed by default-template fallback views */
  --text-primary: var(--paper);
  --text-secondary: var(--paper-dim);
  --text-muted: var(--paper-faint);
  --accent-color: var(--red);
  --border-color: var(--line);
  --card-hover-bg: rgba(18, 16, 19, 0.7);
  --search-bg: var(--panel);
  --border-radius: 0;
  --bg-color: var(--ink-0);
  --grid-gap: 22px;
}

body.tb-body a {
  color: inherit;
  text-decoration: none;
}

body.tb-body img {
  display: block;
  max-width: 100%;
}

body.tb-body ::selection {
  background: var(--red);
  color: var(--ink-0);
}

/* global film grain */
body.tb-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.tb-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  min-height: 100dvh;
}

.tb-page > main {
  flex: 1 0 auto;
  width: 100%;
}

.tb-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 720px) {
  .tb-wrap {
    padding: 0 18px;
  }
}

.tb-display {
  font-family: "Pirata One", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.tb-serif {
  font-family: "Pirata One", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ============================ marquee ============================ */
.tb-marquee {
  background: var(--red);
  color: var(--ink-0);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--ink-0);
}

.tb-marquee-row {
  display: inline-flex;
  white-space: nowrap;
  animation: tb-mq 32s linear infinite;
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tb-marquee-row span {
  padding: 0 16px;
}

@keyframes tb-mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================ header ============================ */
header.tb-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 9, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--red);
  flex-shrink: 0;
}

.tb-top-row {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 78px;
}

.tb-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.tb-brand .mark {
  font-family: "Pirata One", serif;
  font-size: 30px;
  color: var(--red);
  line-height: 1;
}

.tb-brand .name {
  font-family: "Pirata One", serif;
  font-size: 34px;
  line-height: 0.9;
  color: var(--paper);
  text-shadow: 2px 2px 0 var(--red);
}

.tb-search {
  flex: 1;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.tb-search input {
  width: 100%;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--paper);
  padding: 0 48px 0 16px;
  font-family: "Special Elite", monospace;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s;
}

.tb-search input::placeholder {
  color: var(--paper-faint);
}

.tb-search input:focus {
  border-color: var(--red);
}

.tb-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  color: var(--ink-0);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}

.tb-search button:hover {
  background: var(--red-bright);
}

.tb-search svg {
  width: 17px;
  height: 17px;
}

.tb-top-tools {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.tb-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--paper-dim);
  display: grid;
  place-items: center;
  transition: 0.15s;
}

.tb-icon-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.tb-icon-btn svg {
  width: 18px;
  height: 18px;
}

.tb-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--red);
  color: var(--ink-0);
  display: grid;
  place-items: center;
  font-family: "Pirata One", serif;
  font-size: 20px;
  transform: rotate(-3deg);
  box-shadow: 0 0 0 1px var(--ink-0), 3px 3px 0 rgba(233, 227, 214, 0.2);
}

@media (max-width: 900px) {
  .tb-top-tools {
    display: none;
  }
}

nav.tb-main {
  border-top: 1px solid var(--line);
}

.tb-nav-row {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tb-nav-row::-webkit-scrollbar {
  display: none;
}

.tb-nav-row a {
  font-size: 13px;
  color: var(--paper-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.tb-nav-row a .star {
  font-size: 10px;
}

.tb-nav-row a:hover,
.tb-nav-row a.active {
  color: var(--red);
}

/* ============================ chips ============================ */
.tb-chips {
  display: flex;
  gap: 11px;
  align-items: center;
  overflow-x: auto;
  padding: 24px 0 6px;
  scrollbar-width: none;
}

.tb-chips::-webkit-scrollbar {
  display: none;
}

.tb-chip {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 0;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--paper-2);
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.15s;
}

.tb-chip:nth-child(odd) { transform: rotate(-1.5deg); }
.tb-chip:nth-child(even) { transform: rotate(1.5deg); }

.tb-chip:hover {
  border-color: var(--red);
  color: var(--paper);
  transform: rotate(0) translateY(-1px);
}

.tb-chip.on {
  background: var(--red);
  color: var(--ink-0);
  border-color: var(--red);
}

/* ============================ photo thumb ============================ */
.tb-photo-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 23, 38, 0.35);
  isolation: isolate;
  background: var(--ink-0);
  transition: border-color 0.2s, filter 0.25s;
}

.tb-thumb-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  z-index: 0;
  filter: saturate(0.9) contrast(1.04);
}

/* crop variety (mirrors the design's p1–p8 crops) */
.tb-photo-thumb.p1 .tb-thumb-photo { object-position: 50% 30%; }
.tb-photo-thumb.p2 .tb-thumb-photo { object-position: 50% 50%; }
.tb-photo-thumb.p3 .tb-thumb-photo { object-position: 30% 42%; }
.tb-photo-thumb.p4 .tb-thumb-photo { object-position: 70% 38%; }
.tb-photo-thumb.p5 .tb-thumb-photo { object-position: 50% 18%; }
.tb-photo-thumb.p6 .tb-thumb-photo { object-position: 38% 62%; }
.tb-photo-thumb.p7 .tb-thumb-photo { object-position: 62% 30%; }
.tb-photo-thumb.p8 .tb-thumb-photo { object-position: 50% 72%; }

/* grain overlay over each thumbnail */
.tb-thumb-ovl {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: var(--epic-ovl-opacity);
  mix-blend-mode: var(--epic-ovl-blend);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.tb-thumb-grad-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 8, 9, 0.8), transparent 48%);
}

.tb-photo-thumb .badge-hd,
.tb-photo-thumb .badge-dur,
.tb-photo-thumb .play {
  z-index: 3;
}

.badge-hd {
  position: absolute;
  left: 8px;
  top: 8px;
  font-family: "Special Elite", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: var(--red);
  color: var(--ink-0);
  padding: 2px 6px;
  transform: rotate(-3deg);
}

.badge-dur {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  color: var(--paper);
  background: rgba(8, 8, 9, 0.82);
  padding: 2px 7px;
  border: 1px solid rgba(233, 227, 214, 0.2);
  font-variant-numeric: tabular-nums;
}

.tb-photo-thumb .play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.tb-photo-thumb .play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(207, 23, 38, 0.3), 0 8px 24px rgba(0, 0, 0, 0.6);
  transform: scale(0.8) rotate(-6deg);
  transition: transform 0.2s;
}

.tb-photo-thumb .play span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 14px solid var(--ink-0);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* ============================ card ============================ */
.tb-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s;
}

.tb-card-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
}

.tb-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
}

.tb-card:hover .tb-photo-thumb {
  filter: saturate(1.2) contrast(1.08);
  border-color: var(--red-bright);
}

.tb-card:hover .play {
  opacity: 1;
}

.tb-card:hover .play span {
  transform: scale(1) rotate(0);
}

.tb-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--paper);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.tb-card:hover h3 {
  color: var(--red-bright);
}

.tb-card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Special Elite", monospace;
  font-size: 10.5px;
  color: var(--paper-dim);
  flex-wrap: wrap;
}

.tb-card .meta .cat {
  color: var(--red);
  text-decoration: none;
}

.tb-card .meta .cat:hover {
  color: var(--red-bright);
}

.tb-card .meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--paper-faint);
}

/* ============================ sections & grid ============================ */
.tb-section {
  margin-top: 54px;
}

.tb-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.tb-sec-title {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.tb-sec-title .sc {
  font-size: 17px;
  color: var(--red);
}

.tb-sec-head h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 33px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* dashed rule trailing each section header */
.tb-sec-title::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 2px dashed rgba(233, 227, 214, 0.22);
}

.see-all {
  font-family: "Special Elite", monospace;
  font-size: 11px !important;
  letter-spacing: 0.06em;
  color: var(--paper) !important;
  border: 1px solid var(--line-2);
  padding: 7px 13px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.15s;
}

.see-all:hover {
  background: var(--red);
  color: var(--ink-0) !important;
  border-color: var(--red);
}

.tb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 22px;
}

.tb-grid.g6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1100px) {
  .tb-grid,
  .tb-grid.g6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .tb-grid,
  .tb-grid.g6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================ archive header ============================ */
.tb-arc-head {
  padding: 40px 0 18px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 26px;
}

.tb-arc-head h1 {
  margin: 0;
  font-family: "Pirata One", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.9;
  text-shadow: 3px 3px 0 rgba(207, 23, 38, 0.4);
}

.tb-arc-count {
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  margin-top: 12px;
}

.tb-empty {
  text-align: center;
  padding: 80px 20px;
  font-family: "Special Elite", monospace;
  letter-spacing: 0.05em;
  color: var(--paper-dim);
}

/* ============================ pagination ============================ */
/* Pagy series_nav renders an inner <nav class="pagy series-nav"> holding the
   <a> links, so the flex row must live on that inner nav. */
.tb-pager {
  margin: 54px 0 10px;
}

.tb-pager nav.pagy.series-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tb-pager a {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--paper-2);
  font-family: "Special Elite", monospace;
  font-size: 13px;
  display: grid;
  place-items: center;
  transition: 0.15s;
}

.tb-pager a:hover {
  border-color: var(--red);
  color: var(--red);
}

.tb-pager a[role="separator"] {
  border-color: transparent;
  background: transparent;
}

.tb-pager a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.tb-pager a[aria-current="page"] {
  background: var(--red);
  color: var(--ink-0);
  border-color: var(--red);
  opacity: 1;
}

/* ============================ footer ============================ */
footer.tb-footer {
  flex-shrink: 0;
  margin-top: 80px;
  border-top: 2px solid var(--red);
  padding: 46px 0 56px;
  background: var(--ink-1);
}

.tb-foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .tb-foot-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.tb-foot-brand .tb-display {
  font-family: "Pirata One", serif;
  font-size: 38px;
  text-shadow: 2px 2px 0 var(--red);
}

.tb-foot-brand p {
  font-weight: 300;
  font-size: 13.5px;
  color: var(--paper-dim);
  max-width: 300px;
  margin: 14px 0 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.tb-barcode {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 38px;
  background: var(--paper);
  padding: 6px 8px;
  width: fit-content;
}

.tb-barcode span {
  height: 100%;
  background: var(--ink-0);
}

.tb-foot-col h4 {
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 16px;
}

.tb-foot-col a {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13.5px;
  color: var(--paper-dim);
  margin-bottom: 11px;
  transition: 0.15s;
}

.tb-foot-col a:hover {
  color: var(--red-bright);
}

.tb-foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: "Special Elite", monospace;
  font-size: 11px;
  color: var(--paper-faint);
  letter-spacing: 0.04em;
}

.tb-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.tb-tag-cloud__pill {
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--paper-2);
  padding: 6px 13px;
  transition: 0.15s;
}

.tb-tag-cloud__pill:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--ink-0);
}

/* ============================ watch page ============================ */
.tb-watch {
  padding: 28px 40px 48px;
}

.tb-watch .watch-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

@media (max-width: 1080px) {
  .tb-watch .watch-grid {
    grid-template-columns: 1fr;
  }
}

.tb-watch .tb-player.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--red);
  box-shadow: 6px 6px 0 rgba(207, 23, 38, 0.22);
  background: #000;
}

.tb-watch .tb-player-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.tb-watch .tb-player-empty {
  display: grid;
  place-items: center;
  min-height: 200px;
  font-family: "Special Elite", monospace;
  color: var(--paper-dim);
  font-size: 14px;
}

.tb-watch .cta-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  background: var(--red);
  color: var(--ink-0);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15px;
  text-decoration: none;
  border: 0;
  box-shadow: 4px 4px 0 rgba(233, 227, 214, 0.18);
  transition: background 0.18s;
}

.tb-watch .cta-full:hover {
  background: var(--red-bright);
  color: var(--ink-0);
}

.tb-watch .v-title {
  font-family: "Pirata One", serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 0.95;
  margin: 22px 0 16px;
  color: var(--paper);
  text-shadow: 2px 2px 0 rgba(207, 23, 38, 0.35);
}

.tb-watch .v-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tb-watch .v-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Special Elite", monospace;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--paper-dim);
  flex-wrap: wrap;
}

.tb-watch .v-meta-left .cat-link {
  color: var(--red);
  text-decoration: none;
}

.tb-watch .v-meta-left .cat-link:hover {
  color: var(--red-bright);
}

.tb-watch .v-meta-left .cat-sep {
  color: var(--paper-faint);
}

.tb-watch .v-meta-left .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.tb-watch .v-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tb-watch .act {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid var(--line-2);
  background: transparent;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.18s;
}

.tb-watch .act:hover {
  border-color: var(--red);
  color: var(--red);
}

.tb-watch .act svg {
  width: 16px;
  height: 16px;
}

.tb-watch .channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.tb-watch .channel .ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: "Pirata One", serif;
  font-size: 24px;
  color: var(--ink-0);
  border: 2px solid var(--red);
}

.tb-watch .channel .ci {
  flex: 1;
  min-width: 0;
}

.tb-watch .channel .ci h4 {
  margin: 0 0 4px;
  font-family: "Pirata One", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  text-shadow: 1px 1px 0 rgba(207, 23, 38, 0.3);
}

.tb-watch .channel .ci span {
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--paper-dim);
}

.tb-watch .tb-channel-link {
  color: var(--paper-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tb-watch .tb-channel-link:hover {
  color: var(--red);
}

.tb-watch .channel .sub {
  background: var(--red);
  color: var(--ink-0);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 rgba(233, 227, 214, 0.15);
  transition: background 0.18s;
}

.tb-watch .channel .sub:hover {
  background: var(--red-bright);
  color: var(--ink-0);
}

.tb-watch .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.tb-watch .tags .tag {
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: transparent;
  border: 1px solid var(--line-2);
  padding: 5px 12px;
  text-decoration: none;
  transition: 0.15s;
}

.tb-watch .tags .tag:hover {
  border-color: var(--red);
  color: var(--paper);
}

.tb-watch .tags .tag--category {
  color: var(--red);
}

.tb-watch .desc {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--paper-2);
  line-height: 1.65;
  letter-spacing: 0.02em;
  padding: 20px 0;
}

.tb-watch .desc p {
  margin: 0 0 12px;
}

.tb-watch .desc a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* sidebar */
.tb-watch .side-col {
  position: sticky;
  top: 130px;
}

.tb-watch .side-head {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.tb-watch .side-head .sc {
  font-size: 14px;
  color: var(--red);
}

.tb-watch .side-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tb-watch .side-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  align-items: flex-start;
  transition: transform 0.18s;
}

.tb-watch .side-item:hover {
  transform: translateX(3px);
}

.tb-watch .side-item-thumb {
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.tb-watch .side-thumb {
  width: 120px;
  flex-shrink: 0;
}

.tb-watch .tb-photo-thumb--side {
  aspect-ratio: 16 / 9;
  border-color: rgba(207, 23, 38, 0.28);
}

.tb-watch .side-item:hover .tb-photo-thumb--side {
  border-color: var(--red);
}

.tb-watch .side-info {
  min-width: 0;
  padding-top: 2px;
}

.tb-watch .side-info h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tb-watch .side-info h3 a {
  color: var(--paper);
  text-decoration: none;
}

.tb-watch .side-item:hover .side-info h3 a {
  color: var(--red);
}

.tb-watch .side-info .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-family: "Special Elite", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--paper-faint);
}

.tb-side-item .meta .chan {
  color: var(--red);
  text-decoration: none;
}

.tb-watch .side-info .meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--paper-faint);
}

.tb-watch .ad {
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 26px;
}

.tb-watch .ad .label {
  text-align: center;
  font-family: "Special Elite", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper-faint);
  padding: 10px;
}

.tb-watch .ad-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(18, 16, 19, 0.5);
  padding: 8px;
}

.tb-watch .ad-slot iframe {
  max-width: 100%;
}

/* ============================ report modal ============================ */
body.tb-body .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 6, 7, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  display: none;
  padding: 20px;
}

body.tb-body .modal-content {
  background: var(--ink-2);
  border: 1px solid var(--red);
  padding: 24px;
  width: 100%;
  max-width: 500px;
  box-shadow: 8px 8px 0 rgba(207, 23, 38, 0.25);
}

body.tb-body .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

body.tb-body .modal-title {
  margin: 0;
  font-family: "Pirata One", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--paper);
}

body.tb-body .close-modal-btn {
  background: none;
  border: none;
  color: var(--paper-dim);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

body.tb-body .close-modal-btn:hover {
  color: var(--red);
}

body.tb-body .form-group {
  margin-bottom: 16px;
}

body.tb-body .form-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--paper-dim);
}

body.tb-body .form-control {
  width: 100%;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 0;
  color: var(--paper);
  font-family: inherit;
  font-size: 14px;
}

body.tb-body .form-control:focus {
  outline: none;
  border-color: var(--red);
}

body.tb-body .btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--red);
  color: var(--ink-0);
  border: none;
  border-radius: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

body.tb-body .btn-primary:hover {
  background: var(--red-bright);
}

@media (max-width: 720px) {
  .tb-watch {
    padding: 24px 18px 40px;
  }

  .tb-watch .v-title {
    font-size: 34px;
  }

  .tb-arc-head h1 {
    font-size: 44px;
  }

  .tb-sec-title h2 {
    font-size: 26px;
  }
}
