/* Wrapper for nav + arrow */
  .nav-wrapper {
    position: fixed;
    top: 50px; /* directly below header */
    left: 0;
    width: 100%;
    display: flex;
    background: #252a2d;
    z-index: 999;
  }

  /* Scrollable nav */
  nav {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 17px;
    margin-left: -18px;
    color: #9d9c9c;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    text-decoration: none;
  }



  .nav-item img {
    width: 20px;
    height: 22px; /* extend down a little */
    transition: filter 0.3s, transform 0.2s ease;
    display: inline-block;
  }

  .nav-item:hover img {
    filter: brightness(1) invert(0);
  }

  .nav-item.active {
    color: #9be22d;
    width: 50px;
  }

/* Fixed arrow on right */
.nav-arrow {
    flex: 0 0 auto;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2e3336;
    border-left: solid 1px #4d4d4d;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #9bee1f;
    transition: background 0.3s, color 0.3s;
    /* subtle left-border shadow */
}

.element {
  background: #2c2c2c;
  box-shadow: -3px 0 0 0 rgba(0, 0, 0, 0.3);
}

  .nav-arrow:hover {
    background: #3a3a3a;
    color: #9be22d;
  }

  /* Push content below header + nav */
  .content {
    margin-top: 100px;
    text-align: center;
  }