.home-menu-dock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    padding: 4px 8px;
    border-radius: 22px;
    background: #f7faff;
    border: 1px solid rgba(16, 50, 122, 0.1);
    box-shadow: 0 12px 24px rgba(3, 10, 24, 0.14);
}

.dock-nav-item {
    position: relative;
    flex: 1 1 0;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 66px;
    padding: 7px 12px 8px;
    border-radius: 0;
    background: transparent;
    color: #5d76a4;
    cursor: pointer;
    transition: transform 0.22s ease, color 0.22s ease, background-color 0.22s ease;
    border: 0;
    text-align: center;
}

.dock-bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    display: grid;
    gap: 2px;
    min-width: 112px;
    padding: 8px 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, #1b63ff 0%, #0b51ff 100%);
    border: 0;
    box-shadow: 0 10px 20px rgba(11, 81, 255, 0.22);
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    pointer-events: none;
}

.dock-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #0b51ff;
}

.dock-bubble strong {
    font-size: 0.7rem;
    font-weight: 800;
}

.dock-bubble span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.88);
}

.dock-divider {
    width: 1px;
    align-self: stretch;
    margin: 12px 0;
    background: rgba(16, 50, 122, 0.12);
    flex: 0 0 auto;
}

.dock-nav-item:hover {
    transform: translateY(-1px);
    color: #173c8f;
}

.dock-nav-item:active {
    transform: translateY(0);
}

.dock-nav-item.is-active {
    background: transparent;
    color: #5d76a4;
}

.dock-nav-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    color: currentColor;
    flex-shrink: 0;
}

.dock-nav-label-group {
    display: grid;
    gap: 0;
    min-width: 0;
}

.dock-nav-label {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .home-menu-dock {
        padding: 4px 6px;
        border-radius: 18px;
    }

    .dock-nav-item {
        min-height: 60px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 4px;
        padding: 6px 8px 7px;
    }

    .dock-bubble {
        bottom: calc(100% + 8px);
        min-width: 96px;
        padding: 7px 8px;
        border-radius: 12px;
    }

    .dock-bubble strong {
        font-size: 0.64rem;
    }

    .dock-bubble span {
        font-size: 0.72rem;
    }

    .dock-divider {
        margin: 10px 0;
    }

    .dock-nav-icon {
        width: 22px;
        height: 22px;
        font-size: 0.86rem;
    }

    .dock-nav-label-group {
        gap: 0;
    }

    .dock-nav-label {
        font-size: 0.74rem;
    }
}
