 /* Home-only: stats bar */
  .stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 0.5px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .stat-bar-num {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
  }

  .stat-bar-label {
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--text4);
    text-transform: uppercase;
    font-weight: 400;
  }

  /* Home-only: videos */
  .video-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .video-scroll::-webkit-scrollbar { display: none; }

  .video-card {
    flex: 0 0 calc(33% - 8px);
    min-width: 220px;
    max-width: 260px;
    scroll-snap-align: start;
    background: var(--bg2);
    border-radius: 10px;
    border: 0.5px solid var(--border2);
    border-top: 1.5px solid var(--orange);
    overflow: hidden;
  }

  .video-card iframe {
    width: 100%;
    height: 390px;
    display: block;
    border: none;
  }

  .video-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .video-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid var(--border2);
    background: var(--bg2);
    color: var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-size: 16px;
    user-select: none;
  }

  .video-arrow:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--bg3);
  }

  .video-arrow:disabled {
    opacity: 0.25;
    cursor: default;
    border-color: var(--border);
    color: var(--text4);
  }


  @media (max-width: 600px) {
    .stat-bar-num { font-size: 16px; }
    .stat-bar-label { font-size: 11px; letter-spacing: 0.08em; }
    .stats-bar { gap: 8px; padding: 16px 16px; }
  }