@font-face {
    font-family: Barlow;
    font-style: normal;
    font-weight: 300;
    src: url(/cf-fonts/s/barlow/5.0.11/latin/300/normal.woff2);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
  }

  @font-face {
    font-family: Barlow;
    font-style: normal;
    font-weight: 400;
    src: url(/cf-fonts/s/barlow/5.0.11/latin/400/normal.woff2);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
  }

  @font-face {
    font-family: Barlow;
    font-style: normal;
    font-weight: 500;
    src: url(/cf-fonts/s/barlow/5.0.11/latin/500/normal.woff2);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
  }

  @font-face {
    font-family: Barlow;
    font-style: normal;
    font-weight: 600;
    src: url(/cf-fonts/s/barlow/5.0.11/latin/600/normal.woff2);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
  }

  /* ─── ReyMod Timeline – Pro Styles ─────────────────────────────── */
  :root {
    --yt-red: #ff0000;
    --sc-orange: #ff5500;
    --sp-green: #1db954;
    --lk-blue: #007bff;
    --bg-light: #f4f5f7;
    --card-border: rgba(0, 0, 0, .08);
    --main-font: 'Barlow', sans-serif;
  }

  .timeline-page {
    background-color: var(--bg-light);
    padding-top: 2rem;
    padding-bottom: 4rem;
    font-family: var(--main-font);
  }

  .timeline-page h1,
  .timeline-page h2,
  .timeline-page h3,
  .timeline-page h4,
  .timeline-page h5,
  .timeline-page h6 {
    font-family: var(--main-font);
    letter-spacing: -.02em;
  }

  /* ── Vertical line: gradient + glow ── */
  .timeline-container {
    position: relative;
    padding-left: 4.2rem;
    margin-top: 1rem;
  }

  .timeline-container::before {
    content: '';
    position: absolute;
    left: 1.05rem;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg,
        rgba(29, 185, 84, .00) 0%,
        rgba(29, 185, 84, .28) 12%,
        rgba(0, 123, 255, .22) 50%,
        rgba(255, 85, 0, .18) 78%,
        rgba(255, 0, 0, .00) 100%);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, .03) inset,
      0 10px 30px rgba(0, 0, 0, .05);
  }

  /* ── Per-item node dot ── */
  .timeline-item {
    position: relative;
    margin-bottom: 2.2rem;
  }

  .timeline-item::after {
    content: '';
    position: absolute;
    left: 1.02rem;
    top: 1.05rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, .12);
    box-shadow: 0 .35rem .9rem rgba(0, 0, 0, .12);
    z-index: 1;
  }

  /* ── Left service badge ── */
  .timeline-badge {
    position: absolute;
    left: -3.35rem;
    top: .6rem;
    width: 2.6rem;
    height: 2.6rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
    border: 3px solid #fff;
  }

  .timeline-item:hover .timeline-badge {
    transform: scale(1.15);
  }

  /* ── Group card (glass feel) ── */
  .timeline-card {
    border-radius: 1.25rem !important;
    transition: all .3s ease;
  }

  .timeline-group-card {
    border-radius: 1.35rem !important;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, .07) !important;
  }

  .timeline-card:hover,
  .timeline-group-card:hover {
    transform: translateX(4px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .10) !important;
  }

  /* ── Brand badge colours ── */
  .badge-youtube {
    background: var(--yt-red);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 0, 0, .28);
  }

  .badge-soundcloud {
    background: var(--sc-orange);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 85, 0, .28);
  }

  .badge-spotify {
    background: var(--sp-green);
    color: #fff;
    box-shadow: 0 4px 10px rgba(29, 185, 84, .28);
  }

  .badge-link {
    background: var(--lk-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, .28);
  }

  .badge-default {
    background: #6c757d;
    color: #fff;
  }

  /* ── Embed container ── */
  .embed-container {
    border-radius: .75rem;
    overflow: hidden;
    margin-top: .75rem;
  }

  /* ── User avatar (header) ── */
  .timeline-user-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    margin-right: .85rem;
  }

  /* ── Username / meta ── */
  .timeline-username {
    font-weight: 700;
    color: #111;
    font-size: .97rem;
  }

  .timeline-meta {
    font-size: .8rem;
    color: rgba(0, 0, 0, .55);
  }

  .dot-sep {
    margin: 0 .3rem;
    opacity: .5;
  }

  /* ── Item title ── */
  .timeline-item-title {
    font-size: .975rem !important;
    font-weight: 700;
  }

  /* ── Mini items list ── */
  .timeline-mini-wrap {
    border-top: 1px dashed rgba(0, 0, 0, .12);
    padding-top: .25rem;
  }

  .timeline-mini-item {
    display: flex;
    gap: .75rem;
    padding: .6rem .1rem;
    align-items: flex-start;
  }

  .timeline-mini-item+.timeline-mini-item {
    border-top: 1px solid rgba(0, 0, 0, .05);
  }

  .mini-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-top: .45rem;
    flex-shrink: 0;
  }

  /* ── Link chip ── */
  .timeline-link-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .22rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .09);
    background: rgba(255, 255, 255, .78);
    font-size: .76rem;
    color: #222;
    text-decoration: none;
    transition: box-shadow .18s, background .18s;
  }

  .timeline-link-chip:hover {
    background: #fff;
    text-decoration: none;
    box-shadow: 0 .35rem .9rem rgba(0, 0, 0, .09);
    color: #111;
  }

  .timeline-link-chip .chip-domain {
    opacity: .78;
    font-weight: 600;
  }

  /* ── Online users strip ── */
  .user-online-strip {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .05);
  }

  .user-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-right: 1.4rem;
    transition: opacity .2s;
  }

  .user-pill:hover {
    opacity: .8;
  }

  .user-pill img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: .25rem;
    border: 2px solid var(--sp-green);
  }

  .user-pill span {
    font-size: .73rem;
    color: #333;
    font-weight: 500;
  }

  .search-box-v2 {
    background: #fff;
    border-radius: 50px;
    padding: .5rem 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    border: 1px solid var(--card-border);
  }

  .search-box-v2 input {
    border: none !important;
    box-shadow: none !important;
    padding-left: 0;
  }