.ModeBottomBar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    display: none;
    z-index: 18;
}

.ModeBottomBar_Inner {
    width: min(100%, 460px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(16, 37, 66, 0.92);
    box-shadow: 0 18px 40px rgba(16, 37, 66, 0.24);
}

.ModeBottomBar_Link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 56px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
}

.ModeBottomBar_Link.is-active,
.ModeBottomBar_Link[aria-current='page'] {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

@media (max-width: 720px) {
    .ModeBottomBar {
        display: block;
    }
}