.nav-indicator {
    position: fixed;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    height: 50vh;
}

.nav-indicator ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-indicator li {
    width: 6px;
    height: 6px;
    margin: 35px 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-indicator li.active {
    background-color: #fff;
    transform: scale(1.5);
    box-shadow: 0 0 1px 6px rgba(121, 115, 115, 0.5);
}

.scroll-guide {
    position: absolute;
    top: 90%; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

.scroll-text {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .nav-indicator {
        display: none;
    }
  }
  