/* ════════════════════════════════════════════════════════════════════
   TIMELINE — Vintage Players · "Hardware Hall of Fame"
   Design : trading-card collection × level select arcade
   ════════════════════════════════════════════════════════════════════ */

:root {
  --tl-ink: #f4e6c1;
  --tl-glow: 0 0 18px rgba(255, 216, 74, 0.45);
  --tl-glow-strong: 0 0 32px rgba(255, 216, 74, 0.6);
  --tl-cyan: #5cf0ff;
  --tl-magenta: #ff4dc7;
  --tl-grid: rgba(255, 216, 74, 0.06);

  /* Couleurs de type — neon vibrantes */
  --tl-console: #ff5577;
  --tl-ordinateur: #5cc8ff;
  --tl-arcade: #ffb84a;
}

/* ─── Background animé (étoiles + grid pixel) ────────────────────────── */
body { overflow-x: hidden; }

.vp-timeline-page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}
.vp-timeline-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 28% 60%, rgba(255,216,74,0.4), transparent),
    radial-gradient(1.5px 1.5px at 55% 28%, rgba(92,240,255,0.4), transparent),
    radial-gradient(1px 1px at 78% 72%, rgba(255,77,199,0.3), transparent),
    radial-gradient(2px 2px at 90% 12%, rgba(255,255,255,0.3), transparent);
  background-size: 100% 100%;
  animation: tlStars 60s linear infinite;
  pointer-events: none;
  z-index: -2;
  opacity: 0.7;
}
.vp-timeline-page::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--tl-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--tl-grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
@keyframes tlStars {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 100% 50%, -50% 100%, 80% -30%, -30% 60%, 50% -80%; }
}

/* ─── Hero header avec titre glitch ──────────────────────────────────── */
.vp-tl-hero {
  position: relative;
  padding: 140px 24px 50px;
  text-align: center;
  overflow: hidden;
}
.vp-tl-hero-eyebrow {
  display: inline-block;
  font-family: var(--f-pixel);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 8px 18px;
  border: 2px solid var(--gold-d);
  background: rgba(0,0,0,0.4);
  margin: 18px 0 24px;
}

.vp-tl-hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.9;
  color: var(--tl-ink);
  text-transform: uppercase;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  position: relative;
  display: block;
  text-shadow:
    3px 3px 0 #000,
    0 0 24px rgba(255,216,74,0.4);
}
.vp-tl-hero-title .accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
/* Glitch RGB sur l'accent */
.vp-tl-hero-title .accent::before,
.vp-tl-hero-title .accent::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
}
.vp-tl-hero-title .accent::before {
  color: var(--tl-cyan);
  transform: translate(-3px, 1px);
  mix-blend-mode: screen;
  animation: tlGlitch 4s steps(1) infinite;
  text-shadow: none;
}
.vp-tl-hero-title .accent::after {
  color: var(--tl-magenta);
  transform: translate(3px, -1px);
  mix-blend-mode: screen;
  animation: tlGlitch 4s steps(1) infinite reverse;
  text-shadow: none;
}
@keyframes tlGlitch {
  0%, 90%, 100% { transform: translate(0, 0); opacity: 0; }
  91%           { transform: translate(-4px, 2px); opacity: 0.7; }
  93%           { transform: translate(3px, -2px); opacity: 0.7; }
  95%           { transform: translate(-2px, 1px); opacity: 0.5; }
  97%           { transform: translate(2px, -1px); opacity: 0.6; }
}

.vp-tl-hero-sub {
  font-family: var(--f-mono);
  font-size: 21px;
  color: var(--ink-dim);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
.vp-tl-hero-sub strong {
  color: var(--gold);
  font-weight: 700;
}
.vp-tl-hero-update {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink-mute);
  margin: 8px 0 0;
  letter-spacing: 0.06em;
}

/* ─── Stats panel ────────────────────────────────────────────────────── */
.vp-tl-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 36px auto 0;
  flex-wrap: wrap;
}
.vp-tl-stat {
  position: relative;
  padding: 14px 22px 12px;
  background: rgba(10,10,31,0.85);
  border: 3px solid var(--stone-edge-d);
  box-shadow: 4px 4px 0 #000, inset 0 0 0 1px rgba(255,216,74,0.15);
  min-width: 120px;
}
.vp-tl-stat-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 2px 2px 0 #000;
}
.vp-tl-stat-label {
  display: block;
  font-family: var(--f-pixel);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--parch);
  text-transform: uppercase;
  margin-top: 8px;
}
.vp-tl-stat--console    .vp-tl-stat-num { color: var(--tl-console); }
.vp-tl-stat--ordinateur .vp-tl-stat-num { color: var(--tl-ordinateur); }
.vp-tl-stat--arcade     .vp-tl-stat-num { color: var(--tl-arcade); }

/* ─── Filtres "control panel arcade" ─────────────────────────────────── */
.vp-tl-filters-label {
  text-align: center;
  font-family: var(--f-pixel);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--parch);
  text-transform: uppercase;
  margin: 18px 0 16px;
}
.vp-tl-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 60px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.vp-tl-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 24px;
  font-family: var(--f-pixel);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--parch);
  background: var(--bg-deep);
  border: 3px solid var(--stone-edge-d);
  box-shadow: inset 1px 1px 0 var(--stone-edge-d), 4px 4px 0 #000;
  text-transform: uppercase;
  user-select: none;
  transition: all 0.2s;
}
.vp-tl-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translate(-1px, -1px);
  box-shadow: inset 1px 1px 0 var(--stone-edge-d), 5px 5px 0 #000;
}
.vp-tl-filter:has(input:checked) {
  border-color: currentColor;
}
.vp-tl-filter[data-type=console]    { --filter-c: var(--tl-console); }
.vp-tl-filter[data-type=ordinateur] { --filter-c: var(--tl-ordinateur); }
.vp-tl-filter[data-type=arcade]     { --filter-c: var(--tl-arcade); }
.vp-tl-filter:has(input:checked)    { color: var(--filter-c); }

.vp-tl-filter input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid currentColor;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s;
}
.vp-tl-filter input[type=checkbox]:checked {
  background: currentColor;
}
.vp-tl-filter input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  font-family: var(--f-body);
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

/* ─── Timeline container + Time Highway ──────────────────────────────── */
.vp-tl-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 120px;
}
.vp-tl-highway {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  transform: translateX(-50%);
  background:
    linear-gradient(to bottom,
      transparent 0%,
      var(--gold-d) 4%,
      var(--gold) 50%,
      var(--gold-d) 96%,
      transparent 100%);
  box-shadow: 0 0 20px rgba(255,216,74,0.5), 0 0 40px rgba(255,216,74,0.2);
  z-index: 1;
}
/* Curseur de progression scroll sur la highway */
.vp-tl-highway::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(var(--scroll, 0) * 100%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold);
  transition: top 0.1s linear;
  pointer-events: none;
}

/* ─── Checkpoint année ───────────────────────────────────────────────── */
.vp-tl-checkpoint {
  position: relative;
  text-align: center;
  padding: 80px 0 50px;
  z-index: 2;
}
.vp-tl-checkpoint-year {
  position: relative;
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.85;
  color: var(--gold);
  text-shadow:
    4px 4px 0 #000,
    -2px 2px 0 var(--tl-magenta),
    2px -2px 0 var(--tl-cyan),
    0 0 30px rgba(255,216,74,0.5);
  letter-spacing: 0.04em;
  padding: 14px 50px;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,216,74,0.1) 50%, transparent 100%),
    var(--bg-deep);
  opacity: 0;
  transform: scale(0.6) rotate(-2deg);
  transition: opacity 0.7s, transform 0.7s cubic-bezier(0.2, 1.5, 0.3, 1);
}
.vp-tl-checkpoint.is-in .vp-tl-checkpoint-year {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.vp-tl-checkpoint-decade {
  display: block;
  margin-top: 14px;
  font-family: var(--f-pixel);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--parch);
  text-transform: uppercase;
  opacity: 0.7;
}
.vp-tl-checkpoint-count {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--gold);
  padding: 4px 14px;
  border: 2px solid var(--gold-d);
  background: rgba(0,0,0,0.5);
}

/* ─── Card / Trading card hardware ───────────────────────────────────── */
.vp-tl-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 70px;
  z-index: 2;
  perspective: 1600px;
}
.vp-tl-row.is-hidden { display: none; }

.vp-tl-card {
  --accent: var(--gold);
  --i: 0;
  position: relative;
  background:
    linear-gradient(135deg, rgba(20,20,50,0.95) 0%, rgba(10,10,31,0.98) 100%);
  border: 3px solid var(--accent);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.5),
    6px 6px 0 #000,
    0 0 0 0 var(--accent);
  overflow: hidden;
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.4s ease,
    filter 0.5s ease;
  cursor: default;
  transform-style: preserve-3d;
  filter: blur(8px);
}
.vp-tl-row[data-type=console]    .vp-tl-card { --accent: var(--tl-console); }
.vp-tl-row[data-type=ordinateur] .vp-tl-card { --accent: var(--tl-ordinateur); }
.vp-tl-row[data-type=arcade]     .vp-tl-card { --accent: var(--tl-arcade); }

/* Card et date partagent la même flex-base → largeurs symétriques autour du rond */
.vp-tl-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 540px;
  align-self: center;
}
.vp-tl-row-left  .vp-tl-card { order: 1; transform: translateX(-80px) rotateY(15deg); }
.vp-tl-row-right .vp-tl-card { order: 3; transform: translateX(80px)  rotateY(-15deg); }

/* Date marker en face de la card */
.vp-tl-date-marker {
  flex: 1 1 0;
  min-width: 0;
  align-self: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  color: var(--gold);
  text-shadow: 3px 3px 0 #000, 0 0 16px rgba(255,216,74,0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.vp-tl-row.is-in .vp-tl-date-marker { opacity: 1; }
.vp-tl-row-left  .vp-tl-date-marker { order: 3; text-align: left; }
.vp-tl-row-right .vp-tl-date-marker { order: 1; text-align: right; }
.vp-tl-row.is-in .vp-tl-card {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) rotateY(0);
}
.vp-tl-row.is-in.vp-tl-row-left  .vp-tl-card { transform: translateX(0) rotateY(4deg); }
.vp-tl-row.is-in.vp-tl-row-right .vp-tl-card { transform: translateX(0) rotateY(-4deg); }

.vp-tl-card:hover {
  transform: translateY(-6px) rotateY(0) scale(1.02) !important;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.5),
    8px 8px 0 #000;
  z-index: 10;
}

/* Hologramme overlay */
.vp-tl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.05) 45%,
    rgba(92,240,255,0.08) 50%,
    rgba(255,77,199,0.08) 55%,
    transparent 70%
  );
  background-size: 250% 250%;
  background-position: 0% 0%;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
  transition: background-position 1.2s;
}
.vp-tl-card:hover::before {
  background-position: 100% 100%;
}


/* ─── Head card : rank + type + rareté ───────────────────────────────── */
.vp-tl-card-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
  border-bottom: 1px solid rgba(255,216,74,0.2);
  z-index: 4;
}
.vp-tl-card-rank {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--parch);
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.vp-tl-card-type {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--f-pixel);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  border: 2px solid rgba(0,0,0,0.3);
  text-shadow: 1px 1px 0 rgba(255,255,255,0.2);
}

/* ─── Art (photo + logo overlay) ─────────────────────────────────────── */
.vp-tl-card-art {
  position: relative;
  margin: 0;
  height: 240px;
  background: #fff;
  overflow: hidden;
}
.vp-tl-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.15) contrast(1.05);
  transition: transform 0.6s ease;
}
.vp-tl-card:hover .vp-tl-card-photo { transform: scale(1.05); }

/* Scanlines CRT sur la photo */
.vp-tl-card-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.vp-tl-card-logo {
  position: absolute;
  bottom: 12px;
  right: 12px;
  max-width: 80px;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 #000);
  z-index: 3;
  background: rgba(0,0,0,0.6);
  padding: 6px 8px;
  border: 1px solid var(--accent);
}

/* Shine sweep au hover */
.vp-tl-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.25) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 4;
  transition: left 1s ease;
}
.vp-tl-card:hover .vp-tl-card-shine { left: 200%; }

/* ─── Plate infos ────────────────────────────────────────────────────── */
.vp-tl-card-plate {
  position: relative;
  padding: 16px 18px 18px;
  z-index: 4;
}
.vp-tl-card-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  color: var(--tl-ink);
  text-shadow: 2px 2px 0 #000;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.vp-tl-card-date {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--accent);
  padding: 2px 8px;
  background: rgba(0,0,0,0.6);
  border-left: 2px solid var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.vp-tl-card-lore {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
}

/* ─── Node central (gros rond avec logo, halo pulse) ─────────────────── */
.vp-tl-node {
  order: 2;
  flex: 0 0 220px;
  align-self: center;
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--gold);
  display: grid;
  place-items: center;
  z-index: 5;
  padding: 22px;
  box-shadow:
    inset 0 0 0 1px var(--stone-edge-d),
    0 0 0 0 transparent;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2,1.5,0.3,1), opacity 0.3s, box-shadow 0.4s;
}
.vp-tl-row.is-in .vp-tl-node {
  transform: scale(1);
  opacity: 1;
}
.vp-tl-row[data-type=console]    .vp-tl-node { border-color: var(--tl-console); box-shadow: inset 0 0 0 1px var(--stone-edge-d), 0 0 25px var(--tl-console); }
.vp-tl-row[data-type=ordinateur] .vp-tl-node { border-color: var(--tl-ordinateur); box-shadow: inset 0 0 0 1px var(--stone-edge-d), 0 0 25px var(--tl-ordinateur); }
.vp-tl-row[data-type=arcade]     .vp-tl-node { border-color: var(--tl-arcade); box-shadow: inset 0 0 0 1px var(--stone-edge-d), 0 0 25px var(--tl-arcade); }

.vp-tl-node img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.vp-tl-node-placeholder {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold-d);
}
/* Halo pulse */
.vp-tl-node::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent, var(--gold));
  opacity: 0;
  animation: tlPulse 2.5s ease-out infinite;
  pointer-events: none;
}
.vp-tl-row[data-type=console]    { --accent: var(--tl-console); }
.vp-tl-row[data-type=ordinateur] { --accent: var(--tl-ordinateur); }
.vp-tl-row[data-type=arcade]     { --accent: var(--tl-arcade); }
@keyframes tlPulse {
  0%   { opacity: 0.8; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.4); }
}


/* ─── Empty state ────────────────────────────────────────────────────── */
.vp-tl-empty {
  text-align: center;
  padding: 80px 20px;
  font-family: var(--f-mono);
  color: var(--ink-dim);
  font-size: 18px;
}

/* ─── Bouton "haut de page" ──────────────────────────────────────────── */
.vp-tl-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--bg-deep);
  background: var(--gold);
  border: 3px solid var(--gold-d);
  box-shadow: 4px 4px 0 #000, 0 0 24px rgba(255,216,74,0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, box-shadow 0.3s;
  z-index: 100;
}
.vp-tl-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vp-tl-top:hover {
  background: var(--gold-l);
  box-shadow: 4px 4px 0 #000, 0 0 40px rgba(255,216,74,0.7);
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .vp-tl-card-art { height: 200px; }
  .vp-tl-node { flex: 0 0 180px; width: 180px; height: 180px; padding: 18px; }
}
@media (max-width: 800px) {
  .vp-tl-grid { padding: 0 16px 60px; }
  .vp-tl-highway { left: 36px; }
  .vp-tl-checkpoint { padding: 50px 0 30px; text-align: left; padding-left: 60px; }
  .vp-tl-row {
    display: grid;
    grid-template-columns: 76px 1fr;
    grid-template-areas:
      "date date"
      "node card";
    margin-bottom: 32px;
    perspective: none;
    gap: 0;
  }
  .vp-tl-node {
    grid-area: node;
    flex: none;
    width: 72px;
    height: 72px;
    padding: 8px;
  }
  .vp-tl-card,
  .vp-tl-row-left .vp-tl-card,
  .vp-tl-row-right .vp-tl-card {
    grid-area: card;
    max-width: none;
    margin: 0 0 0 16px;
    transform: translateY(40px) !important;
    filter: blur(4px);
  }
  .vp-tl-row.is-in .vp-tl-card { transform: translateY(0) !important; filter: blur(0); }
  .vp-tl-row-left .vp-tl-date-marker,
  .vp-tl-row-right .vp-tl-date-marker {
    grid-area: date;
    flex: none;
    text-align: left;
    padding: 0 0 6px 88px;
    font-size: 22px;
  }
  .vp-tl-card-art { height: 200px; }
  .vp-tl-card:hover { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .vp-tl-card,
  .vp-tl-node,
  .vp-tl-checkpoint-year,
  .vp-tl-row::before,
  .vp-tl-card-photo,
  .vp-tl-card-shine,
  .vp-tl-card::before {
    transition: opacity 0.3s !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .vp-tl-node::after { animation: none; }
  .vp-tl-hero-title .accent::before,
  .vp-tl-hero-title .accent::after { display: none; }
}
