
  @import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500&display=swap');

  * { scrollbar-width: none; -ms-overflow-style: none; box-sizing: border-box; }
  *::-webkit-scrollbar { display: none; }

  .tt-page-wrap {
    background: transparent;
    min-height: 100vh;
    padding: 40px 20px 60px;
    font-family: 'DM Sans', sans-serif;
  }
  .tt-header { text-align: center; margin-bottom: 48px; }
  .tt-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -1px;
  }
  .tt-header h1 span {
    background: linear-gradient(90deg, #ff0050, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .tt-header p { color: #888; font-size: 1rem; margin: 0 0 20px; }

  .tt-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0050;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
  }
  .tt-follow-btn:hover { background: #cc0040; transform: scale(1.04); }
  .tt-follow-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

  .tt-count {
    color: #555;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .tt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .tt-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    aspect-ratio: 9 / 16;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .tt-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,0,80,0.25); }

  .tt-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, #1a1a1a 30%, #2a2a2a 50%, #1a1a1a 70%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    z-index: 0;
  }
  @keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  .tt-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s, opacity 0.4s;
  }
  .tt-card:hover .tt-thumb-img { transform: scale(1.04); }

  .tt-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 35%, transparent 60%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
  }

  .tt-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(255,0,80,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 28px rgba(255,0,80,0.55);
    transition: transform 0.2s;
    pointer-events: none;
  }
  .tt-card:hover .tt-play-btn { transform: translate(-50%, -50%) scale(1.15); }
  .tt-play-btn svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }

  .tt-logo-mark {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 5; opacity: 0.7;
    pointer-events: none;
  }
  .tt-logo-mark svg { width: 24px; height: 24px; fill: #fff; }

  .tt-play-label {
    position: absolute;
    bottom: 14px; left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    pointer-events: none;
  }

  /* Iframe */
  .tt-embed-wrap {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: none;
    overflow: hidden;
  }
  .tt-embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* Top bar blocker - always on when playing */
  .tt-block-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 62px;
    background: #111;
    z-index: 30;
    border-radius: 16px 16px 0 0;
    display: none;
  }

  /* Bottom bar blocker - always on when playing */
  .tt-block-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 82px;
    background: #111;
    z-index: 30;
    border-radius: 0 0 16px 16px;
    display: none;
  }

  /*
    THE KEY FIX:
    A full-cover shield that sits over the ENTIRE video area.
    - Normally: pointer-events OFF so clicks pass through to iframe (video plays)
    - On click: instantly becomes visible + pointer-events ON for 1.2s
      This covers the "Related videos" rectangle before it can be clicked
    - After 1.2s: fades out, pointer-events OFF again, video resumes
  */
  .tt-shield {
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    bottom: 82px;
    z-index: 40;
    background: #111;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    display: none;
    border-radius: 0;
    cursor: default;
  }

  /* Flash icon in center of shield */
  .tt-flash-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 60px; height: 60px;
    background: rgba(255,0,80,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s, transform 0.12s;
  }
  .tt-flash-icon.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .tt-flash-icon svg { width: 24px; height: 24px; fill: #fff; }

  @media (max-width: 640px) {
    .tt-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tt-card { border-radius: 10px; }
    .tt-block-top { border-radius: 10px 10px 0 0; }
    .tt-block-bottom { border-radius: 0 0 10px 10px; }
    .tt-play-btn { width: 46px; height: 46px; }
    .tt-play-btn svg { width: 18px; height: 18px; }
  }
  @media (max-width: 400px) {
    .tt-grid { grid-template-columns: 1fr; }
  }
