.menuMenue {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: none;
    }

.menuMenue h2 {
    position: absolute;
    text-align: center;
    font-size: 16px;
    pointer-events: none;
    }

.menuMenue li {
    list-style: none;
    position: absolute;
    transform-origin: 130px 130px;
    will-change: transform;
    }

    .menuMenue li a {
    display: block;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #d7d7d7, #9e9e9e);
    box-shadow: inset 0 0 5px rgba(255,255,255,0.6),
                inset 0 0 10px rgba(0,0,0,0.4),
                0 4px 10px rgba(0,0,0,0.3);
    color: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    padding: 10px;
    text-decoration: none;
    transition: 0.3s;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.15) 0px,
        rgba(255,255,255,0.15) 1px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 3px
    );
    }

    .menuMenue li a:hover {
    background: #0d6efd;
    transform: scale(1.1);
    }

    .menuMenue li.active a {
    background: linear-gradient(145deg, #f5f5f5, #b0b0b0);
    border: 2px solid #ffffff;
    }

    .menuMenue::before {
    content: "●";
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #cfcfcf, #8f8f8f);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5),
                inset 0 0 15px rgba(0,0,0,0.4),
                0 0 20px rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 2;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.12) 0px,
        rgba(255,255,255,0.12) 1px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 3px
    );
    }

    .menuMenue.spin {
    transition: transform 0.6s ease-out;
    }

    .menu-center-btn {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    color: #666;
    font-size: 11px;
    z-index: 3;
    cursor: pointer;
    background: linear-gradient(145deg, #cfcfcf, #8f8f8f);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5),
                inset 0 0 15px rgba(0,0,0,0.4),
                0 0 20px rgba(0,0,0,0.5);
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.12) 0px,
        rgba(255,255,255,0.12) 1px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 3px
    );
    }

    .menuMenue.closed li {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    }

    .menuMenue li {
    transition: transform 0.4s, opacity 0.4s;
    }

    #unlockNav {
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(145deg, #d7d7d7, #9e9e9e);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.5),
                inset 0 0 10px rgba(0,0,0,0.3),
                0 4px 10px rgba(0,0,0,0.3);
    transition: 0.2s;
    }
    .pwd-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    }

    .pwd-box {
    width: 220px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(145deg, #d7d7d7, #9e9e9e);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5),
                inset 0 0 15px rgba(0,0,0,0.4),
                0 10px 30px rgba(0,0,0,0.5);
    }

    .pwd-title {
    margin-bottom: 10px;
    font-weight: bold;
    }

    #pwdInput {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    text-align: center;
    }
    #menuToggle{
    font-weight: bold;
    }
    #pwdSubmit {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: none;
    background: #0d6efd;
    color: #fff;
    }