.menu-button {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.menu-button.visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.menu-button svg {
    transition: transform 0.3s ease;
}

.menu-button.active {
    left: 80%;
    transform: translate(0, -50%);
}

.menu-button.active svg {
    transform: rotate(90deg);
}

.cc-nav__links.scrolled-active {
    position: fixed !important;
    top: 5% !important;
    left: 50% !important;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: center;
    visibility: hidden;
}

.cc-nav__links.scrolled-visible {
    position: fixed !important;
    top: 5% !important;
    left: 50% !important;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    border-radius: 30px;
    transition: all 0.3s ease;
    transform-origin: center;
}