/* === HEROES SECTION & BOTTOM ROW === */
.heroes-section { flex-shrink: 0; min-height: 0; display: flex; flex-direction: column; overflow: hidden; }
    .hgrid { display: flex; align-items: center; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
    .hgrid::-webkit-scrollbar { display: none; }
    .hcard { position: relative; flex: 0 0 72px; width: 72px; max-width: 72px; overflow: hidden; border: 1px solid var(--brd); border-radius: var(--cr); padding: 10px 5px; text-align: center; background: var(--surf); cursor: pointer; scroll-snap-align: start; transition: .2s; }

    .hcard.on { border-color: transparent; box-shadow: inset 0 0 0 2px var(--acc); }
    .hcard.on .hnm { color: var(--acc); font-weight: 800; }
    .hcard.on.owner { box-shadow: inset 0 0 0 2px var(--hero-owner-txt); }
    .hcard.on.owner .hnm { color: var(--hero-owner-txt); }
    .hcard.create { border-style: dashed; }
    .hcard.create.modify-mode { border-color: #f59e0b; }
    .hcard.create.modify-mode .hnm { color: #f59e0b; }
    .hpfp { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 5px; transition: transform .2s; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hcard-flag { position: absolute; bottom: 3px; right: 5px; font-size: 9px; line-height: 1; pointer-events: none; opacity: 0.45; z-index: 1; }
    .hnm { font-size: .65rem; font-weight: 600; color: var(--txt); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; width: 100%; }
    .journey-row { flex-shrink: 0; }
    .cta { width: 100%; padding: 10px; background: var(--acc); color: #fff; border: none; border-radius: var(--cr); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; font-family: var(--font); transition: all .18s; }
    .cta:active { transform: scale(.97); }
    .mode-tabs { display: flex; gap: 5px; margin-top: 6px; }
    .mode-tab { flex: 1; padding: 7px 1px; text-align: center; font-size: 9px; font-weight: 700; border-radius: var(--cr); cursor: pointer; white-space: nowrap; overflow: hidden; background: var(--tab-off); color: var(--tab-off-t); border: 1px solid var(--brd); transition: all .18s; font-family: var(--font); }
    .mode-tab.on { background: var(--tab-on); color: var(--tab-on-t); border-color: transparent; }
    .t-nf .mode-tab { border-radius: 2px; }

    /* Hero Skeleton Loader */
    .sk-hpfp { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 5px; }
    .sk-hnm { height: 8px; width: 40px; border-radius: 2px; margin: 0 auto; }