/* right-nav.css — fixed right-side section scroll indicator */

#right-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  pointer-events: auto;
}

.rn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.rn-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

/* dot */
.rn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
  transition: background .25s, transform .25s, width .25s;
  display: block;
  order: 2;
}

/* label — hidden by default, slides in on hover */
.rn-label {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(232, 192, 64, .0);
  white-space: nowrap;
  order: 1;
  transition: color .2s, opacity .2s;
  pointer-events: none;
  user-select: none;
}

.rn-item:hover .rn-label,
.rn-item.active .rn-label {
  color: rgba(232, 192, 64, .55);
}

/* active state */
.rn-item.active .rn-dot {
  background: rgba(232, 192, 64, .85);
  transform: scale(1.5);
  width: 6px;
}

.rn-item:hover .rn-dot {
  background: rgba(232, 192, 64, .5);
  transform: scale(1.3);
}

/* hide on small screens */
@media (max-width: 900px) {
  #right-nav { display: none; }
}
