/* Wrapper for nav + arrow */
  .nav-wrapper {
    position: fixed;
    top: 50px; /* directly below header */
    left: 0;
    width: 100%;
    display: flex;
    background: #33383b;
    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: 7px;
    padding: 8px 18px;
    margin-right: -4px;
    color: #cdcdcd;
    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: #33383b;
    cursor: pointer;
    font-size: 18px;
    color: #9be22d;
    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;
  }