.nav-top-panel {
    position: relative;
    top: 32px;
    left: 0;

    margin-left: 32px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: calc(100vw - 64px);
    height: 76px;

    background-color: #262423BF;
    color: white;
    z-index: 1000;
    transition: top 0.5s ease;
    user-select: none;

    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.226);
    box-sizing: border-box;

    overflow: hidden;
}

.nav-top-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0);
    /* полупрозрачный тёмный фон */
    z-index: 1;
}

.nav-top-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

.nav-buttons {
    display: flex;
    gap: 36px;
    z-index: 2;
    height: 100%;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: minecraft;
    font-size: clamp(12px, 2vw, 38px);
    color: #cacaca;
    letter-spacing: 4px;

    height: 100%;
    margin-top: 2px;

    transition: text-shadow 0.2s ease-in-out, color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    cursor: pointer;
}

.nav-button:hover {
    text-shadow: 0 0 10px #7f7f7f;
    color: #ffffff;
}

.nav-button-active {
    color: #ffffff;
}